Datagrid
-
You mean pass data from one grid to another ? On the client side ? On the client side, it's all just tables and divs, you can do whatever you like if you write javascrpt to do it. The real queston is, what exactly do you hope to achieve, in particular, is it for presentation only, or do you want the back end involved in some way ?
Christian Graus - Microsoft MVP - C++ "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
-
struggle hard than it will be done now start
-
You mean pass data from one grid to another ? On the client side ? On the client side, it's all just tables and divs, you can do whatever you like if you write javascrpt to do it. The real queston is, what exactly do you hope to achieve, in particular, is it for presentation only, or do you want the back end involved in some way ?
Christian Graus - Microsoft MVP - C++ "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
-
hi!! What I want to do is that .. suppose I have a main grid which has main category items Now when I click on any item in main category a grid of subcategories should populate and come up .
Mrinal
Oh, a master child view ? Yes, that's easy. You would probably postback to create the child view, then it becomes easy. The selected item provides the data to populate the child grid on postback.
Christian Graus - Microsoft MVP - C++ "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )