3

Is it possible to override the default 'There is no Data available' message in MVCContrib Grid with a custom message?

MrBliz
  • 5,830
  • 15
  • 57
  • 81

1 Answers1

6
<%= Html.Grid<SomeModelType>(Model)
        .Empty("Some custom message")
        ...
%>
Darin Dimitrov
  • 1,023,142
  • 271
  • 3,287
  • 2,928