This sample shows how to display a message in the grid if there are no visible rows.
Question Comments
Added By: Sam Wheat at: 6/9/2013 5:48:12 PM
Is this included in the base product?
If no, why not?
Added By: Goran_ at: 11/15/2013 4:29:46 AMHi,
I also think that empty template should be available DxGrid, DxChart, and other "items controls".
The title of this example is not correct. This code does is not related to DxGrid, but to TableView, since it does not not work for CardView. Why there is no rowPresenterGrid element in CardView (haven't looked into other views)?
Regards,
Goran
Broken for 14.1. You need to change
container.Children.Add(emptyGridContentresenter);
to
Grid.SetRow(emptyGridContentresenter, 1);
container.Children.Add(emptyGridContentresenter);
As the GridView template has changed.