Hello,
I have the following grid with columns.AutoGenerate(true) :
@(Html.Kendo().Grid<dynamic>() .Name("gridEQ") .Columns(columns => { columns.AutoGenerate(true); }) .Pageable() .Sortable() .Scrollable() .Selectable(s => s.Mode(GridSelectionMode.Multiple)) .NoRecords() .Filterable(f => f.Enabled(false)) .AutoBind(false) .DataSource(dataSource => dataSource .Ajax() .PageSize(100) .Read(read => read.Action("Read", "Home")) ) )
If there is a query result from SQLServer with a column Name with spaces no rows are shown in the grid (the column Header is there)
see attached Picture
here is the json result:
{"Data":[{"Anzahl der Betriebsmittel":1376}],"Total":1,"AggregateResults":null,"Errors":null}