The Ignore checkbox is not unticked when data is inserted inside rows added with Continue insertion
This commit is contained in:
@@ -407,12 +407,16 @@ $(document).ready(function() {
|
|||||||
$this_element
|
$this_element
|
||||||
.attr('value', '')
|
.attr('value', '')
|
||||||
.unbind('change')
|
.unbind('change')
|
||||||
.attr('onchange', null)
|
// Keep these values to be used when the element
|
||||||
|
// will change
|
||||||
|
.data('hashed_field', hashed_field)
|
||||||
|
.data('new_row_index', new_row_index)
|
||||||
.bind('change', function(e) {
|
.bind('change', function(e) {
|
||||||
|
var $changed_element = $(this);
|
||||||
Validator(
|
Validator(
|
||||||
hashed_field,
|
$changed_element.data('hashed_field'),
|
||||||
new_row_index,
|
$changed_element.data('new_row_index'),
|
||||||
$this_element.closest('tr').find('span.column_type').html()
|
$changed_element.closest('tr').find('span.column_type').html()
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user