Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
45
A simple ultragrid infragistics maintenance catalog
posted

I am totally new in this technology and I was trying to make a simple maintenance catalog using an UltraGrid but I got some difficulties with the insert and delete and I do not how it works, can anybody help me some example or where can I find a little help with that.

 

thanks so much and I appreciate it

Parents
  • 469350
    Verified Answer
    Offline posted

    The UltraGrid doesn't have any native support for inserting rows. This would have to be done through your data source. What kind of Data Source are you using for the grid? You should be aware that DataTables have some problems with inserting rows. When a row is inserted into a DataTable, the DataTable sends a notification that a new row was added, but it provides the wrong index for the new row. It always indicates that the row was added to the end of the table rather than inserted. 

    Also, are you talking about inserting and deleting rows programmatically, or through user interaction? Users can delete selected rows in the grid by selecting the rows and pressing the DEL key, as long as AllowDelete is true. 

Reply Children
No Data