Hi,
We are having an issue that blur() for a date field in an editable table doesn't fire when we are trying to leave the edit mode by clicking other records or clicking outside of the table. This issue only happens when "modalEditing" is set to be true and on IE.
We are using v8.3p_2013-09-01/PowerEdition on IE9/IE10. On firefox, the blur() is fired as expected.
Please try the following example in Feature Explorer with the datasource "countryDS". Thanks!
Steps to reproduce:
1. Click the date field for any record to enter the edit mode.
2. Click another record or outside the table to leave the edit mode, the blur() is not triggered on IE but is triggered on firefox.
P.S. In step 2 if we click another field in the same record, for example the "country" column, blur() is correctly fired.
We are having an issue that blur() for a date field in an editable table doesn't fire when we are trying to leave the edit mode by clicking other records or clicking outside of the table. This issue only happens when "modalEditing" is set to be true and on IE.
We are using v8.3p_2013-09-01/PowerEdition on IE9/IE10. On firefox, the blur() is fired as expected.
Please try the following example in Feature Explorer with the datasource "countryDS". Thanks!
Steps to reproduce:
1. Click the date field for any record to enter the edit mode.
2. Click another record or outside the table to leave the edit mode, the blur() is not triggered on IE but is triggered on firefox.
P.S. In step 2 if we click another field in the same record, for example the "country" column, blur() is correctly fired.
Code:
isc.ListGrid.create({ ID: "countryList", width:550, height:224, dataSource: countryDS, fields:[ {name:"countryName"}, {name:"independence", editorProperties: {blur: function() {isc.warn("Blur is triggered");}}} ], autoFetchData: true, canEdit: true, editEvent: "click", modalEditing: true })
Comment