示例#1
0
 public GridColumn(GridModel gridModel, GridColumnAttribute att, string propertyName, int order)
 {
     this.GridModel = gridModel;
     this.ColumnAttribute = att;
     this.PropertyName = propertyName;
     this.Order = order;
 }
示例#2
0
 public ActionGridColumn(GridModel gridModel, GridColumnAttribute att, string propertyName, int order)
     : base(gridModel, att, propertyName, order)
 {
 }
 public Page_Navigation_ShowInMenu_SortableGridColumn(GridModel gridModel, GridColumnAttribute att, string propertyName, int order)
     : base(gridModel, att, propertyName, order)
 {
 }
示例#4
0
 public static IHtmlString GridFor2(this HtmlHelper html, Type modelType, IEnumerable dataSource, string templateName)
 {
     return(new HtmlString(html.Partial(templateName, GridModel.CreateGridModel(modelType, dataSource, html.ViewContext)).ToString()));
 }
示例#5
0
 public Element_Name_GridColumn(GridModel gridModel, GridColumnAttribute att, string propertyName, int order)
     : base(gridModel, att, propertyName, order)
 {
 }