views:

16

answers:

1

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

A: 
<%= Html.Grid<SomeModelType>(Model)
        .Empty("Some custom message")
        ...
%>
Darin Dimitrov