var params = arguments[0], $ = skuid.$;
var table = $(‘#MyTable’),
list,
items;
alert(“Hello World”);
alert(table.length);
if (table.length > 0) {
list = table.data(‘Scholarship_Award__c’).list;
items = list.getSelectedItems();
}
alert(list.length);
In the code above the first 2 alerts are shown, and the table.length is greater than 0 but the 3 alert is not shown the table is populated with data form the ‘Scholarship Award’ object.
Am I missing the obvious, do not want to use mass action on the table hence trying to use this snippet.
Question
Issue with Table.data()
This topic has been closed for replies.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.