Select to view content in your preferred language

Does a Query Widget exist allowing multple queries?

676
1
03-12-2014 12:18 PM
BrianO_keefe
Honored Contributor
The current standard Query Widget allows a single query. Does anyone know of a widget allowing for more than a single query? Like the Bookmarks widget but with a list of Queries?
Tags (2)
0 Kudos
1 Reply
GeorgeHaskett
Deactivated User
If you are referring to the ability of making a list of individual queries, you can use a widgetgroup to contain multiple versions of the query widget.  They will all use the same swf, but you will need a unique xml file for each individual query.

Note I haven't done this with the Query widget, but I have with the Search widget along with other widgets, etc.

Here is an example of doing something similar with the LinkList widget:
<widgetgroup icon="widgets/LinkList/assets/images/linklist.png" label="Links">
 <widget label="County Parcel Viewers" url="widgets/linklist/linklistWidget.swf" config="widgets/linklist/linklistWidget_AP.xml" icon="assets/images/i_zoomnext.png" top="50" left="50" height="600" width="400"/>
 <widget label="Farm Bureau Links" url="widgets/linklist/linklistWidget.swf" config="widgets/linklist/linklistWidget_FB.xml" icon="assets/images/FB_logo_v30.png" top="50" left="200" height="300" width="400"/>
 </widgetgroup>


Hope this helps...
0 Kudos