Jump to content

Mask in Grid


Mediv

Recommended Posts

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.

Link to comment
Share on other sites

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

}

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...