Thanks for the sample, I love RadControl I'm on my 5 company(as a consulty) and I always request for them to buy Telerik control.
Now my delima conver the web sit to MVC , so of course I was very happy with your demo.
I need to have my grid programatically but from the code behind I cant find some properties and event as you can see on my commente code.
//RadGrid1.Width = Unit.Percentage(98);
//RadGrid1.AllowSorting = true;
//RadGrid1.AllowPaging = true;
//RadGrid1.AutoGenerateColumns = false;
//RadGrid1.GridLines = GridLines.None;
//RadGrid1.ShowStatusBar = true;
//RadGrid1.AllowMultiRowSelection = true;
//RadGrid1.PagerStyle.Mode = GridPagerMode.NumericPages;
//RadGrid1.ShowGroupPanel = true;
//RadGrid1.AllowAutomaticDeletes = true;
//RadGrid1.AllowAutomaticInserts = true;
//RadGrid1.AllowAutomaticUpdates = true;
GridEditCommandColumn editcommandColumn;
editcommandColumn =
new GridEditCommandColumn();
//RadGrid1.MasterTableView.Columns.Add(editcommandColumn);
editcommandColumn.UniqueName =
"ThiseditcommandColumn";
editcommandColumn.ButtonType =
GridButtonColumnType.ImageButton;
editcommandColumn.EditImageUrl =
"~/Images/icon_edit.gif";
editcommandColumn.HeaderText =
"Edit";
//RadGrid1.MasterTableView.DataKeyNames = new string[] { "PropertyID" };
//RadGrid1.MasterTableView.AutoGenerateColumns = false;
Why is that?