Click here to Skip to main content
15,891,943 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i have radgrid and i have two columns in that
1)imagebutton column 2)radiobutton column

on the click of imagebutton i want radiobutton of that row should be checked
how to do it?

What I have tried:

i tried following javascript pn rowclick of radgrid
JavaScript
function ValueChanged1() {
       var grid = $find("<%=dgSearchGrid.ClientID %>");
       var MasterTable = grid.get_masterTableView();
       var Rows = MasterTable.get_dataItems();
       for (var i = 0; i < Rows.length; i++) {
           var row = Rows[i];
           var radiobutton = row.findElement("chkSelect1");
           radiobutton.Checked = true;
       }
Posted
Updated 4-Mar-17 3:16am
v2

1 solution

Best place to get support on Telerik's control is the Telerik forums: UI for ASP.NET AJAX Forums - Telerik Community[^]
 
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