Mediv Posted August 20, 2012 Posted August 20, 2012 Hi all, I want to hang the mask on the form after changing data in the first grid and remove the mask after changing data in the second grid, can someone tell me AjaxEvent to catch the change data in the grid, unless of course this event is. Thank you. Quote
Ronak Posted August 23, 2012 Posted August 23, 2012 Hello, If we show mask on form, Form1.BitBtn_Dummy1.showMask('....Wait...', Form1.FormPanel), the form will be disabled, showing the mask... I used Dummy button.. First Grid->ClientEvents Ext.grid.EditorGridPanel function OnAfterEdit(value, originalValue, row, column) { Form1.BitBtn_Dummy1.showMask('....Wait...', Form1.UniDBGrid1 ); } Second Grid->ClientEvents Ext.grid.EditorGridPanel function OnAfterEdit(value, originalValue, row, column) { Form1.BitBtn_Dummy1.hideMask(); } Quote
Mediv Posted August 23, 2012 Author Posted August 23, 2012 Hello, If we show mask on form, Form1.BitBtn_Dummy1.showMask('....Wait...', Form1.FormPanel), the form will be disabled, showing the mask... I used Dummy button.. First Grid->ClientEvents Ext.grid.EditorGridPanel function OnAfterEdit(value, originalValue, row, column) { Form1.BitBtn_Dummy1.showMask('....Wait...', Form1.UniDBGrid1 ); } Second Grid->ClientEvents Ext.grid.EditorGridPanel function OnAfterEdit(value, originalValue, row, column) { Form1.BitBtn_Dummy1.hideMask(); } Thanks, I'll try. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.