Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Overriding the default 'No Data' Message in MVCContrib Grid

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

like image 330
MrBliz Avatar asked Dec 29 '25 12:12

MrBliz


1 Answers

<%= Html.Grid<SomeModelType>(Model)
        .Empty("Some custom message")
        ...
%>
like image 150
Darin Dimitrov Avatar answered Jan 01 '26 03:01

Darin Dimitrov