Hi Team,
After upgrading smartgwt from 4.0pNov07 to 6.0p-2017-05-26, RecordDoubleClickEvent is fired twice.
Origianl Verion:
gwt: 2.5.1
smartgwt: 4.0pNov07
Migrated Version
gwt: 2.8.1
smartgwt: 6.0p-2017-05-26
Browser tested : Chrome
Version 56.0.2924.87 (64-bit)
I have a listgrid on which i have registered RecordDoubleClickEvent and the corresponding event handlers getting called in smartgwt 4.0p but after the upgrade to smartgwt 6.0p, the RecordDoubleClickEvent is getting fired twice.
I haven't changed any of the code from past 1 year.
Code snippet
protected void setupGridRecordDoubleClickHandler(ListGrid aGrid) {
aGrid.addRecordDoubleClickHandler(new RecordDoubleClickHandler() {
@Override
public void onRecordDoubleClick(RecordDoubleClickEvent event) {
// event handler logic goes here } });}
Please help.
After upgrading smartgwt from 4.0pNov07 to 6.0p-2017-05-26, RecordDoubleClickEvent is fired twice.
Origianl Verion:
gwt: 2.5.1
smartgwt: 4.0pNov07
Migrated Version
gwt: 2.8.1
smartgwt: 6.0p-2017-05-26
Browser tested : Chrome
Version 56.0.2924.87 (64-bit)
I have a listgrid on which i have registered RecordDoubleClickEvent and the corresponding event handlers getting called in smartgwt 4.0p but after the upgrade to smartgwt 6.0p, the RecordDoubleClickEvent is getting fired twice.
I haven't changed any of the code from past 1 year.
Code snippet
protected void setupGridRecordDoubleClickHandler(ListGrid aGrid) {
aGrid.addRecordDoubleClickHandler(new RecordDoubleClickHandler() {
@Override
public void onRecordDoubleClick(RecordDoubleClickEvent event) {
// event handler logic goes here } });}
Please help.
Comment