ParamQuery grid support forum

General Category => Help for ParamQuery Pro => Topic started by: mrha on March 26, 2019, 12:02:42 pm

Title: what is difference of initialize?
Post 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
Code: [Select]
$(function () {

      $("#grid_array").pqGrid( obj );
});

bad working case
Code: [Select]
      $("#grid_array").pqGrid( obj );

Title: Re: what is difference of initialize?
Post by: paramvir on March 26, 2019, 10:43:03 pm
This one is the correct one.

Code: [Select]
//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.
Title: Re: what is difference of initialize?
Post by: mrha on March 27, 2019, 05:55:43 am
thanks.  :)