public GridColumn(GridModel gridModel, GridColumnAttribute att, string propertyName, int order) { this.GridModel = gridModel; this.ColumnAttribute = att; this.PropertyName = propertyName; this.Order = order; }
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) { }
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())); }
public Element_Name_GridColumn(GridModel gridModel, GridColumnAttribute att, string propertyName, int order) : base(gridModel, att, propertyName, order) { }