I am using ultrawebgrid to show hierarchical data.
I am using datasets and datatables to bind to the grid.
I have set the NodataMessage = some text.
But this message is not disaplyed where my grid does not have data.
?? Any ideas why?
Please help.
I am facing the same issue. Did you find the fix?
Hi all
This is by desing.To see the NoDataMessage you must check if the Grid's DataSource is null or empty (e.g. MyData.Count == 0) and if so call myGrid.Clear(); and myGrid.DisplayLayout.Columns.Clear();
Then you will see the NoMessageText.
RegardsAdrian