hi team,
can anyone please help me on below issue:
designed kendo grid like below:
@(Html.Kendo().Grid
{
.NoRecords(true)
}
here i have to give a custom message "No Records Found"
please help me on this
hi team,
can anyone please help me on below issue:
designed kendo grid like below:
@(Html.Kendo().Grid
{
.NoRecords(true)
}
here i have to give a custom message "No Records Found"
please help me on this
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Jayraj ChhayaPosted Feb 13, 2024, 6:40 AM
Hi Murli,
The problem in the code is that the
NoRecordsproperty is not being set correctly. It should be set to a custom message, but it is currently set totrue.Let's update the code as follows
With this change, the grid will display the message "No Records Found" when there are no records to display.