Im creating a treeview on client side and there is a requirement of adding multiple radio buttons columns dynamically.
How can I achieve adding multiple columns client side with proper alignment. I couldnt find any article showing how to add radio button columns.
node = new Telerik.Web.UI.RadTreeNode();
node.set_text(msg.d[i].Text);
node.set_value(msg.d[i].ID);
var dataItem = msg.d[i];
node.set_expandMode(Telerik.Web.UI.TreeNodeExpandMode.WebService);
objTree.get_nodes().add(node);