ParamQuery grid support forum

General Category => Help for ParamQuery Grid (free version) => Topic started by: mraj on May 06, 2024, 10:30:04 am

Title: Event for Grid focus
Post 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
Title: Re: Event for Grid focus
Post by: mraj on May 09, 2024, 03:38:34 pm
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.
Title: Re: Event for Grid focus
Post by: mraj on May 12, 2024, 09:44:23 am
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).
Title: Re: Event for Grid focus
Post by: paramvir on May 13, 2024, 12:05:32 pm
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
Title: Re: Event for Grid focus
Post by: mraj on May 24, 2024, 10:12:02 am
thanks for your reply. Yet to try this.