I want to select a row from my igGrid and when submit button is clicked, I want that entire row to be passed down to the action method of the submit button. How can I do that ?
I have set features.Selection().Mode(SelectionMode.Row);
Is there a way to pass the entire row which was seleected to the action method or could i atleast get the id of the row selected.
Also is there a way other than using Jquery, Is there a .feature=> property through which we can pass the row or row id on button click. If not then please tell me how to do it through Jquery.
I need to know this urgently. Any help would be appreciated. also I have read the IgnitUi's website demo but still i cannot seem to achieve what i want .
If you could provide a short working sample , that would be great.
Thanks.
Priya,
I provided guidance on how to do this in How to get the selected row of iggrid thread that you followed up on yesterday.
If the approach presented in the threads you are following up on doesn't work for you, please provide details on what specifically you need assistance with. I also recommend starting a new thread rather than following up on threads that have been inactive for years.
how to get the iggrid selected row data in igtexteditor while cliking on the row in iggrid
Hi Team,
If I want to find the cell text on selected row event based on column name, is it possible?
Thanks again. Really appreciate your help.
Hello zeppelin led,
For each child layout you should add UpdateUrl which points to an action method which will handle the transactions for this specific layout. This is needed, because GridModel.LoadTransactions is generic method and requires a generic type parameter, so for ScreenType type you'll call
or for Screen you'll call
In the browser you need to call igGrid.saveChanges for each grid. This is done by iterating over the collection returned by igHierarchicalGrid.allChildrenWidgets (for the root grid you need to use igHierarchicalGrid.rootWidget).
Here is an example:
Hope this helps,Martin PavlovInfragistics, Inc.