I have the following things defined in my code:
$(“#grid”).jqxGrid(‘showloadelement’);
$(“#grid”).on(‘bindingComplete’, function (event) {
alert(“Binding is completed”);
});
// Initialize the JQX grid object.
var grid = $(“#grid”).jqxGrid({
altrows: true,
autoshowloadelement: true,
showdefaultloadelement: true,
pageable: true,
autoheight: true,
showtoolbar: true,
theme: ‘classic’,
columnsresize: true,
columns: [
I can see this alert alert("Binding is completed");
but the icon isn’t loading using the $("#grid").jqxGrid('showloadelement')
. I was looking at this fiddle for reference : http://jsfiddle.net/jqwidgets/g7zEL/
What am I missing?