ParamQuery grid support forum

General Category => Help for ParamQuery Pro => Topic started by: MEngelbyPQ on December 21, 2016, 04:41:11 am

Title: Toolbar listener anonymous function - getting an ID from the 'this' object
Post by: MEngelbyPQ on December 21, 2016, 04:41:11 am
I've got 3 different pq_grids, one on each jquery tab.  I've differentiated each grid and id attributes on the controls within the toolbar.  The part where I am having difficulty is identifying which export_control from which pq_grid is being executed in the anonymous function within the pq_grid toolbar.  I want to get the id of the event target.

I've tried many many things, the latest being this.pqGrid but pqGrid isn't a method of the object.  I'm using version 3.3.4.
Title: Re: Toolbar listener anonymous function - getting an ID from the 'this' object
Post by: paramvir on December 21, 2016, 09:04:13 pm
id of the grid can be obtained within the listener function as

Code: [Select]
  this.widget().attr("id")
Title: Re: Toolbar listener anonymous function - getting an ID from the 'this' object
Post by: MEngelbyPQ on December 21, 2016, 09:41:02 pm
That did it.  It's pretty obvious that I need to read all the documentation.  Not just the parts that seem to relate to what I am working on.  Thanks for answering something that should of been RTFM.

From Minnesota America - Happy Holidays!