hi,
is it possible to show two rows in a row
for eg,
i want to show like this
ID Name Mark1 Mark3
Age Mark2 Mark4
1 Test 100 100
20 90 90
like this
Please reply ASAP,
thanks,
Rajvel
The WebGrid displays a single data item per row, so no you really can't get that behavior from the WebGrid. If this is a feature you would like to see in a future grid, I suggest submitting it through our support staff.
Request a Feature or Component
You can use templated columns to display two items, one above the other, in a single cell.
You can also do formatting in your datasource: SELECT [item1] + '<br>' + [item2] AS ItemsOneAndTwo. I don't recommend this, for reasons that I hope are obvious.