Hi i hav telrik radgrid inside it i hav dropdown,
on dropdown selected value, my other columns in corresponding same rows values shuld be updated.
give me solution for this in both client and server side levels
can any one help me.
The following sample code shows how you can achieve this in server side. Attach SelectedIndexChanged event to DropDownList and using NamingContainer property of DropDownList access the grid item. Then find out corresponding control which you want to change using FindControl method and update its value.
If you want to achieve this in client side, attach 'onChange' client event to DropDownList by passing item index to event handler. In that event handler identify the corresponding row using this index value and find out the control in that row that you wants to update.