I have a RadGrid, which is in the first place empty (as you can see on the picture).
In order to let the RadGrid show the header without any data in the RadGrid, I needed to set:
ShowHeadersWhenNoRecords="true"
But the header was still not visable. After some research I found that there must be a datasource for the RadGrid, even if it’s empty. So I set the DataSource of the RadGrid to a empty datatable, and that worked.
But then the RadGrid displayed a text below the header, containing: “There are no records” or something like that. In order to remove that text i’ve added the folowwing code to the RadGrid:
NoDetailRecordsText="" NoMasterRecordsText=""
So now there is no text below the header, except for a small white strip, which I think is VERY ugly (see image below). Does anyone know how to remove that white strip below the header of the RadGrid?

Thank you in advance!
Kind regards,
Wesley
This could easily be done using something like jQuery or just good ol’ plain JavaScript, but I don’t think there’s a property on the RadGrid like
DontShowWhiteStripOnEmptyGridor anything.Using jQuery I was able to get the white strip on this RadGrid to disappear using this: