I am using YUI Datatable. myDataTable = new YAHOO.widget.DataTable("cellediting", myColumnDefs, myDataSource, { });
Added RadioCellEditor. var radioEditor = new YAHOO.widget.RadioCellEditor({ radioOptions:["1","0"],disableBtns:true }); radioEditor.subscribe("saveEvent", saveChange);
saveChange is customise function which send ajax request and update the data in the table.
Everything is working fine. But if click on radio cell option and instead of selecting provided option click some other areas of YUI then saveChange() function is calling 4 times. How to resolve this issue?