ParamQuery grid support forum

General Category => Help for ParamQuery Pro => Topic started by: Digitalsoft on May 22, 2020, 02:23:20 pm

Title: JQueryStatic paramquery is not available in Angular
Post by: Digitalsoft on May 22, 2020, 02:23:20 pm
Team, In jQuery version of pgGrid, we change default loading message for any grid operation and get/reset using $.paramquery.pqGrid.defaults.strLoading. We have tried to do the same in Angular version but no luck. Looks like it is not globally available. Could you guide us how can we get the default strLoading option in Angular. Thank you.
Title: Re: JQueryStatic paramquery is not available in Angular
Post by: paramvir on May 22, 2020, 05:06:45 pm
Code: [Select]
import $ from 'jquery';

Code: [Select]
alert( $["paramquery"].pqGrid.defaults.strLoading );
Title: Re: JQueryStatic paramquery is not available in Angular
Post by: Digitalsoft on May 26, 2020, 03:51:23 pm
It works, thank you!