Hi All,
my grid fails to observer HeaderText:
cols.Add(new Column { Field = "Celex" } );
cols.Add(new Column { Field = "Title" , HeaderText = "Cím"});
cols.Add(new Column { Field = "Details", HeaderText = "Részletek"});
cols.Add(new Column { Field = "Links", HeaderText = "Közvetlen elérés"});
it renders as:
Also it wastes space this way, I want it to give any and all available space to Title, but other columns are dynamic so I am unwilling to fix the widths:
The grid is:
TabGrid = new Grid<object>
{
GridModel = new GridProperties
{
DataSource = gridDataList,
EnablePersistence = false,
AllowPaging = details.Count() > 10,
IsResponsive = false,
AllowResizing = true,
AllowTextWrap = true,
AllowResizeToFit = true,
AllowReordering = false,
AllowSorting = true,
AllowMultiSorting = true,
AllowScrolling = false,
AllowFiltering = false,
FilterSettings = new FilterSettings{ FilterType = FilterType.Excel }}
};
Please advise.