ParamQuery grid support forum
General Category => Help for ParamQuery Grid (free version) => Topic started by: mraj on May 06, 2024, 10:30:04 am
-
Hi,
Is there any event for when the paramquery grid got focused?. Searched existing events, could not find.
Also when tried for javascript event, it is not firing.
$("#grid").on('focus', function () {
console.log('Inside Focus');
});
Any suggestion would help.
Thanks
-
There present one javascript event focusin
$("#grid").focusin(function () {
console.log('Inside MLP Focus');
});
but , this gets called for each and every record, some times within the record itself.
Any other event could you suggest.
-
Hi,
Suggest any event for,
when the grid got focused, all the drop down options present in it should be refreshed for new values. ( Refreshing drop down Only once will be a viable solution).
-
For one time event listeners, you can use one() instead of on() i.e., $grid.one( eventName, fn ) instead of $grid.on( eventName, fn )
Selection events may be helpful to you:
https://paramquery.com/api#event-selectChange
https://paramquery.com/api#event-selectEnd
-
thanks for your reply. Yet to try this.