Select to view content in your preferred language

Enhanced Search Widget for FlexViewer 2.1

160524
767
10-25-2010 02:13 PM
RobertScheitlin__GISP
MVP Emeritus
All Here is my next widget in the FlexViewer 2.1 series

Special thanks to Erwan Caradec for contributing to this code.

The Enhanced Search Widget extends the standard search widget with a floating data grid and a new spatial query w/buffering.

http://www.arcgis.com/home/item.html?id=5d4995ccdb99429185dfd8d8fb2a513e
Tags (2)
0 Kudos
767 Replies
EricVenden
Frequent Contributor
Thanks for your response Robert and for looking at this.
I appreciate it.

Eric V
Gurnee, IL
0 Kudos
RobertScheitlin__GISP
MVP Emeritus
All,

   There is a new version of the widget out there now 2.2.6

  * Added the ability to disable/enable export option in the data grid on a layer by layer basis.
  * Fixed issue with sorting data grid columns when layer has a join
  * Fixed issue with tooltips hanging for coded value domain combobox when using mouse wheel.
  * Changed packaging of widget so that assets are included in widget folder for
    easier moving of widget to new versions of the FlexViewer.
0 Kudos
EricVenden
Frequent Contributor
Thank you very much Robert.

Eric V
Gurnee, IL
0 Kudos
LisaArnold
Deactivated User
Hi Robert,

Is there a way to highlight point data search results just by coloring the point a different color instead of placing a graphic on top of it? I would like the found points to highlight in a similar fashion to the way the polygons are highlighted in this widget - ie the way they are highlighted in ArcMap when points are selected.

In the code below I have changed the color of my polygon fill & outline. I tried commenting out the picturemarkersymbol line which resulted in my points having the binoculars on them again instead of the .png I directed it to. But is there anything I can change here to get the result I'm looking for?

<simplefillsymbol color="0x00ffff" alpha="0.5">
      <outline color="0x00ffff" alpha="0.8" width="2"/>
     </simplefillsymbol>
     <picturemarkersymbol url="assets/images/tick.png" height="16" width="16" xoffset="0" yoffset="0" />
  <simplelinesymbol color="0x00ffff" alpha="0.8" width="2"/>


Thanks for your help.

Lisa Arnold
University of New Mexico
0 Kudos
RobertScheitlin__GISP
MVP Emeritus
Lisa,

    Currently the only marker symbol that is supported is the picturemarkersymbol. I will look at changing this in the next release.
0 Kudos
PaulLang
Deactivated User
I would like to change the selected results to outline only, not red symbol area. 
Can someone point me to the correct section? 
Using SearchWidget.mxml
Version 2.1.5 * Fixed Issue with graphical included in comments!!
0 Kudos
RobertScheitlin__GISP
MVP Emeritus
Paul,

As new versions are released old versions are no longer supported. I can not attempt to maintain so many versions as the current release is 2.2.6. In the 2.2.6 version in the SearchWidget.xml there is the symbols element setting its alpha to 0 should do it:

<symbols>
     <simplefillsymbol color="0xff0000" alpha="0.00001">
      <outline color="0xff0000" alpha="0.8" width="2"/>
     </simplefillsymbol>
0 Kudos
PaulLang
Deactivated User
Just got your latest, thanks for all you do!
0 Kudos
LisaArnold
Deactivated User
Lisa,

    Currently the only marker symbol that is supported is the picturemarkersymbol. I will look at changing this in the next release.


Thanks for the note Robert. I have started a new thread to try and trouble shoot some of my searching issues. If you get a chance I hope you can check it out. http://forums.arcgis.com/threads/22773-Enhanced-search-widget-sql-queries?p=74539#post74539

Lisa Arnold
0 Kudos
RobertScheitlin__GISP
MVP Emeritus
All,

   New version is available.

Version 2.2.7 - 02/04/2011
  * Added the ability to resize the floating data grid.
  * Fixed an issue with disable/enable export option in the data grid on a layer by layer basis.
  * Fixed issue with symbology alpha and color being set to 0 or 0x000000.
  * Added ability to define a simple marker symbol for point or the current picture marker symbol.
0 Kudos