The Ignore checkbox is not unticked when data is inserted inside rows added with Continue insertion

This commit is contained in:
Marc Delisle
2011-01-03 10:10:24 -05:00
parent cfca67f422
commit 032d6d5e0c

View File

@@ -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()
); );
}); });
} }