StrataFrame Forum

Infragistics Ultragrid and Toolbar Edit

http://forum.strataframe.net/Topic15583.aspx

By Aaron Young - 4/13/2008

Hi,

Can anyone tell me if the Infragistics Wrapper supports the use of the Edit toolbar button on an Ultragrid?

Thanks

By Trent L. Taylor - 4/14/2008

Can anyone tell me if the Infragistics Wrapper supports the use of the Edit toolbar button on an Ultragrid?

Are you referring to the SF MaintenanceFormToolstrip in conjunction with the grid?

By Aaron Young - 4/14/2008

Yes, you are right. Sorry, I should have explained myself clearer.

Basically, I would like the grid to require the Edit button to be clicked before data entry is permitted

By Trent L. Taylor - 4/14/2008

Just handle the editing state of the BO.  There is an EditingStateChanged event and you can set the enabled status of the grid via that method.

MyGrid.Enabled = MyBO.EditingState <> EditingState.Idle
By Aaron Young - 4/14/2008

Thanks I will give it a go.