Display a message within the Kendo grid when it's empty

后端 未结 12 2195
栀梦
栀梦 2020-12-13 09:27

I\'m trying to display a friendly message (like \"No records found, try again later\") within the grid content, when there are no records in the database.

F

12条回答
  •  情深已故
    2020-12-13 09:54

    Not sure what was the exact version this question was asked, but in my case none of the above solutions worked.

    I used the following one:

    config : {
         noRecords: {
              message: "No records found."
         },
    }
    

提交回复
热议问题