Thanks, Attila!
Looks like I have some weird issue going on with my column sizing. The NoRecordsTemplate doesn't show, unless I resize the columns like this:
var
columns = radGridKitsMTV.get_columns();
for
(
var
i = 0; i < columns.length; i++) {
columns[i].resizeToFit(
false
,
true
);
}
For whatever reason, that makes it work. It's almost like the text from the NoRecordsTemplate is being put into a column that was too compressed to display. Thanks for the demo project. That helped.