All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
<
telerik:RadGrid
ID
=
"RadGRid"
runat
"server"
AutoGenerateColumns
"false"
AutoGenerateEditColumn
"true"
OnNeedDataSource
"RadGRid_NeedDataSource"
AllowFilteringByColumn
>
MasterTableView
CommandItemDisplay
"Top"
CommandItemSettings
ShowExportToWordButton
/>
Columns
telerik:GridBoundColumn
DataField
""
HeaderText
"Object"
</
ClientSettings
ClientEvents
protected
void
RadGRid_NeedDataSource(
object
sender, Telerik.Web.UI.GridNeedDataSourceEventArgs e)
{
List<
string
> data =
new
> {
"a"
,
"b"
"c"
};
RadGRid.DataSource = data;
}