hi, i have the following sample page. on the left you can select values , press on the button and the items will appear in the right grid , without page loading . i works on the fly. can i realize that with the webdatagrid or should i take another infr. control?
Hello martin2004,
Let me know if you need further assistance with this question.
If you want to be able to populate the grid with data without doing Postback to the server you will need to store the needed information (the one for the second grid) on the Client-Side.
You can try using “Unbound” columns for your second grid and populate them with needed data - http://samples.infragistics.com/aspnet/Samples/WebDataGrid/Data/Unbound-Column/Default.aspx?cn=data-grid&sid=bad80c49-1e5f-4e7b-8ea6-6e5aeda3d9ad
If you have CLR 4 installed in your machine you can use Client-Binding like shown in the following samples - http://samples.infragistics.com/aspnet/Samples/WebDataGrid/Data/Client-Binding/Default.aspx?cn=data-grid&sid=fd0e525b-38d6-42d9-9507-14a67373a718
http://community.infragistics.com/forums/p/48035/257450.aspx#257450
The best approach however is to use our new jQuery grid and Client-Side DataSource that can give you the ability to perform all needed binding and data accessing procedures entirely on Client-Side - http://samples.infragistics.com/jquery
Let me know if you have further questions.