Thanks. Is there a list of options that can be set that aren't officially documented in the api? I ask because I looked for this option in the api documentation first, assuming it might be there. I didn't realize I could initialize the grid by passing in these options as well which is very helpful.
For anyone else, you can set the 'no rows to display' string at initialization like this:
var obj = {
// all your other grid settings
strNoRows : 'Nothing to show'
}
$("mydiv").pqGrid(obj);
I wanted to style it and had to explicitly pass in the css styles like this:
strNoRows : '<div style="font-size:18px;margin-top:20px;">Nothing to show</div>'