Click here to Skip to main content
15,886,049 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Is there any way to populate a row of second grid from first grid, via clicking row of first grid.
I know i can achieve same using drag & drop rows, but i want to do it by clicking rows.
Please suggest.
Posted

Thank you for your question. As a suggestion, You can use click event of telerik rad grid and check if it first row then get data from 2nd row and put it first row programming way.

XML
<pre lang="XML">&lt;telerik:RadGrid AutoGenerateColumns=&quot;False&quot; ID=&quot;rgMDCountry&quot;
           DataSourceID=&quot;odsMDCountry&quot; ShowFooter=&quot;True&quot; runat=&quot;server&quot;
           OnItemCommand=&quot;rgMDCountry_ItemCommand&quot;;&gt;</pre>


C#
protected void rgMDCountry_ItemCommand(object source, GridCommandEventArgs e)
       {
       }


Thanks,
Mamun
 
Share this answer
 
v2
Comments
Rohit.Net100 29-Nov-10 12:12pm    
Any alternate Ideas.
Since you didnt like the other answer, did you tried looking here:
Telerik RadGrid Forum[^]
Posting here is fine. Might be someone can help but I had found that specific questions related to 3rd party is answered more quickly and accurately at respective forums.
 
Share this answer
 
OnRowDblClick of First RadGrid, i want to populate that row data into second RadGrid row.
How to achieve this. Any sample example is helpful.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900