ParamQuery grid support forum
General Category => Help for ParamQuery Pro => Topic started by: mrha on March 26, 2019, 12:02:42 pm
-
grid appear gray mask about 6 by 4 rectangle when i click cell.
i lost too many my time. To figure out what the problem is.
you cast test array.htm in zip file.
good working case
$(function () {
$("#grid_array").pqGrid( obj );
});
bad working case
$("#grid_array").pqGrid( obj );
-
This one is the correct one.
//shorthand for document.ready event
$(function () {
$("#grid_array").pqGrid( obj );
});
because elements are present in the DOM only when document is fully loaded in the browser i.e., document.ready event.
-
thanks. :)