<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: SFV: Custom Info Window on Roll Over in Search Widget in ArcGIS API for Flex Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/sfv-custom-info-window-on-roll-over-in-search/m-p/3085#M66</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Oh, I see: I cannot interact with the InfoWindow because my Map is in the Search by graphics mode; I need to disable that, I guess.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 20 Jul 2010 19:31:25 GMT</pubDate>
    <dc:creator>IrfanClemson</dc:creator>
    <dc:date>2010-07-20T19:31:25Z</dc:date>
    <item>
      <title>SFV: Custom Info Window on Roll Over in Search Widget</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/sfv-custom-info-window-on-roll-over-in-search/m-p/3082#M63</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I am trying to show a custom datagrid as InfoWindow inside the Search Widget when the user has Mouse Over on the search results records. I have tried to use the code from:&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://resources.esri.com/help/9.3/arcgisserver/apis/flex/samples/index.html?sample=QueryClickInfoWindow" rel="nofollow noopener noreferrer" target="_blank"&gt;http://resources.esri.com/help/9.3/arcgisserver/apis/flex/samples/index.html?sample=QueryClickInfoWindow&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;and modified the following function but nothing happens at all:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;private function mouseOverRecord(event:MouseEvent):void
&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp; var infoData:Object = event.currentTarget.infoData;
&amp;nbsp;&amp;nbsp;&amp;nbsp; clearTimeout(hitimer);
&amp;nbsp;&amp;nbsp;&amp;nbsp; ////hitimer = setTimeout(showHighlight, 800, [infoData]);
&amp;nbsp;&amp;nbsp;&amp;nbsp; graphicsLayer.clear();
&amp;nbsp;&amp;nbsp;&amp;nbsp; infoData.IrfGra.symbol = symbol;
&amp;nbsp;&amp;nbsp;&amp;nbsp; infoData.IrfGra.infoWindowRenderer = myInfoWindowRenderer;
&amp;nbsp;&amp;nbsp;&amp;nbsp; graphicsLayer.add(infoData.IrfGra);
&amp;nbsp;&amp;nbsp; }&lt;/PRE&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Note, the Enhanced Search Widget is too much for my needs and hard to implement within my own Search Widget.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;May be there is a simpler way to do this?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 20:07:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/sfv-custom-info-window-on-roll-over-in-search/m-p/3082#M63</guid>
      <dc:creator>IrfanClemson</dc:creator>
      <dc:date>2021-12-10T20:07:51Z</dc:date>
    </item>
    <item>
      <title>Re: SFV: Custom Info Window on Roll Over in Search Widget</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/sfv-custom-info-window-on-roll-over-in-search/m-p/3083#M64</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Minor correction: Mouse over on the search result does change the symbology (per the ESRI Sample) to dotted lines on the map of the selected (rolled over)&amp;nbsp; searched item; but still does not show the InfoWindow, which of course the ESRI sample does.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Meengla&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jul 2010 16:15:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/sfv-custom-info-window-on-roll-over-in-search/m-p/3083#M64</guid>
      <dc:creator>IrfanClemson</dc:creator>
      <dc:date>2010-07-20T16:15:46Z</dc:date>
    </item>
    <item>
      <title>Re: SFV: Custom Info Window on Roll Over in Search Widget</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/sfv-custom-info-window-on-roll-over-in-search/m-p/3084#M65</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I have made some more progress: Using an external .MXML file to 'render' the Info Window per following code. While the new Info Windows show fine but not they are not registering any mouse clicks on them. I have the code for the .mxml file given below as well.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Must be something simple?!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
var myRenderer:ClassFactory = new ClassFactory(SearchWidgetDgridIRF);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; myRenderer.properties = { myTitle : gra.attributes.title };
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; InfoSym.infoRenderer = myRenderer;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var callout:Graphic = new Graphic(gra.attributes.point, infoSymbol1);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; callout.symbol = InfoSym;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; callout.attributes = gra.attributes;
&amp;nbsp; graphicsLayer.add(callout);

&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;MXML file:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
&amp;lt;?xml version="1.0" encoding="utf-8"?&amp;gt;
&amp;lt;mx:TitleWindow xmlns:mx=&amp;nbsp;&amp;nbsp; "http://www.adobe.com/2006/mxml" 
&amp;nbsp;&amp;nbsp;&amp;nbsp; layout=&amp;nbsp;&amp;nbsp;&amp;nbsp; "absolute" 
&amp;nbsp;&amp;nbsp;&amp;nbsp; width=&amp;nbsp;&amp;nbsp;&amp;nbsp; "300" 
&amp;nbsp;&amp;nbsp;&amp;nbsp; height=&amp;nbsp;&amp;nbsp;&amp;nbsp; "200"&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; showCloseButton= "true" 
&amp;nbsp;&amp;nbsp;&amp;nbsp; title=&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Search Results"
&amp;nbsp;&amp;nbsp;&amp;nbsp; close=&amp;nbsp;&amp;nbsp;&amp;nbsp; "closeMe()"
&amp;nbsp;&amp;nbsp;&amp;nbsp; styleName=&amp;nbsp;&amp;nbsp; "SearchDGCanvas"
&amp;nbsp;&amp;nbsp;&amp;nbsp; creationComplete= "init()" verticalScrollPolicy="auto" enabled="true"&amp;gt;
&amp;lt;mx:VBox&amp;nbsp; xmlns:mx="http://www.adobe.com/2006/mxml"&amp;gt;
&amp;lt;mx:Script&amp;gt;
&amp;nbsp; &amp;lt;![CDATA[
&amp;nbsp;&amp;nbsp; [Bindable]
&amp;nbsp;&amp;nbsp; public var myTitle:String;
&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp; private function closeMe() :void
&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp; private function init() :void
&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp; 
&amp;nbsp; ]]&amp;gt;
 &amp;lt;/mx:Script&amp;gt;

&amp;lt;mx:VBox label="{myTitle}" backgroundColor="0xEEEEEE"&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;mx:Label text="OWNER: {myTitle}"/&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/mx:VBox&amp;gt;
 &amp;lt;/mx:VBox&amp;gt;

&amp;lt;/mx:TitleWindow&amp;gt;

&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 20:07:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/sfv-custom-info-window-on-roll-over-in-search/m-p/3084#M65</guid>
      <dc:creator>IrfanClemson</dc:creator>
      <dc:date>2021-12-10T20:07:53Z</dc:date>
    </item>
    <item>
      <title>Re: SFV: Custom Info Window on Roll Over in Search Widget</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/sfv-custom-info-window-on-roll-over-in-search/m-p/3085#M66</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Oh, I see: I cannot interact with the InfoWindow because my Map is in the Search by graphics mode; I need to disable that, I guess.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jul 2010 19:31:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/sfv-custom-info-window-on-roll-over-in-search/m-p/3085#M66</guid>
      <dc:creator>IrfanClemson</dc:creator>
      <dc:date>2010-07-20T19:31:25Z</dc:date>
    </item>
    <item>
      <title>Re: SFV: Custom Info Window on Roll Over in Search Widget</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/sfv-custom-info-window-on-roll-over-in-search/m-p/3086#M67</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Meengla&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;That is exactly what I am looking!!! can you shared this code with me?... I am not good in Flex.. I am just a newbie, I tried and tried but i t is impossible for me right now.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Carlos&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Jul 2010 09:16:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/sfv-custom-info-window-on-roll-over-in-search/m-p/3086#M67</guid>
      <dc:creator>CarlosRiano</dc:creator>
      <dc:date>2010-07-28T09:16:19Z</dc:date>
    </item>
    <item>
      <title>Re: SFV: Custom Info Window on Roll Over in Search Widget</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/sfv-custom-info-window-on-roll-over-in-search/m-p/3087#M68</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Crionopa,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Sorry for this late response--somehow I am not getting email notifications of responses even though I subscribe to Topics. Hmmm.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I actually ended up not implementing the InfoWindow based approach because it was not suitable for my needs (interactivity was needed in my case). Instead, I now have an .mxml file which shows up (as a popup) when mouse is clicked over a Search Result item. This suits me better than the Enhanced Search Widget or the InfoWindow.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Meengla&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Jul 2010 16:20:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/sfv-custom-info-window-on-roll-over-in-search/m-p/3087#M68</guid>
      <dc:creator>IrfanClemson</dc:creator>
      <dc:date>2010-07-30T16:20:58Z</dc:date>
    </item>
  </channel>
</rss>

