ParamQuery grid support forum
General Category => Help for ParamQuery Pro => Topic started by: jpantona on October 18, 2013, 05:52:40 am
-
I had the datePicker editor and the dropDownList editor working as shown in the above example. Then I upgraded to the pqgrid PRO and it stopped working... any ideas?
-
The editor API is bit changed in Pro.
Instead of
editor: function(ui){ }
&
getEditCellData: function(ui){ }
you have to use
editor: { type: function(ui){ }, getData :function(ui){ } )
http://paramquery.com/pro/api#option-column-editor (http://paramquery.com/pro/api#option-column-editor)
-
This is an example for custom editors (jQueryui autocomplete, datepicker and select lists)
http://paramquery.com/pro/demos/editing_custom (http://paramquery.com/pro/demos/editing_custom)
-
Ok. That helped. Thank you. However, it took awhile to get that to work because, depending on the verion of jQuery, this portion of the sample:
$inp.autocomplete({
source: (dataIndx == "books" ? books : countries),
minLength: 0
}).focus(function () {
//open the autocomplete upon focus
$(this).data("autocomplete").search($(this).val());
});
Needs to change to:
$inp.autocomplete({
source: arr,
minLength: 0
}).focus(function () {
//open the autocomplete upon focus
$(this).data("uiAutocomplete").search($(this).val());
});
In summary, 'autocomplete' needed to change to uiAutocomplete.