Grid empty message

Hi Team,



If grid is empty I want to show the message that grid is emtpy at center…How to do that?



Thanks

It is not safe to modify inner content of HTML, you can use some kind of absolutly positioned box in nearby area.

grid.attachEvent(“onXLE”,function(){
if (!grid.getRowsNum()){
//your code here
}
});