don't rebuild list item while a cell is in edit state
This commit is contained in:
parent
3104ccb9ec
commit
cbd948740a
1 changed files with 3 additions and 1 deletions
|
@ -28,7 +28,9 @@ Ox.ListItem = function(options, self) {
|
||||||
.options(options || {})
|
.options(options || {})
|
||||||
.update({
|
.update({
|
||||||
data: function() {
|
data: function() {
|
||||||
|
if (!that.find('.OxEdit').length) {
|
||||||
constructItem(true);
|
constructItem(true);
|
||||||
|
}
|
||||||
},
|
},
|
||||||
position: function() {
|
position: function() {
|
||||||
that.data({position: self.options.position});
|
that.data({position: self.options.position});
|
||||||
|
|
Loading…
Reference in a new issue