I have a button on my page when it's clicked I want to check if my grid has rows
function CheckBusinessLicense() {
var data = $('#License').data('tGrid');
var tr = JSON.stringify(data);
alert(tr);
}
but these return a string of information. How can I find if my grid have data or rows?