Hello!
Relatively new with Telerik, but I will try my best to explain:
I have a RadGrid where I used
and in the Grid_ColumnCreated event, I set some of the properties for those columns..
Is there a way that I can make one of the columns a LinkButton? I am looking to fire a report by passing a variable belonging to the item whose button was clicked. Thank you!!!
Relatively new with Telerik, but I will try my best to explain:
I have a RadGrid where I used
<telerik:RadGrid Width="95%" ID="pogrid" runat="server" AutoGenerateColumns="true" OnColumnCreated="Grid_ColumnCreated" CellSpacing="0" > </telerik:RadGrid></div>protected void Grid_ColumnCreated(object sender, Telerik.Web.UI.GridColumnCreatedEventArgs e) { if (e.Column is GridBoundColumn) { GridBoundColumn col = (GridBoundColumn)e.Column; if (col.DataTypeName != "System.DateTime") { col.AllowFiltering = true; ...Is there a way that I can make one of the columns a LinkButton? I am looking to fire a report by passing a variable belonging to the item whose button was clicked. Thank you!!!