Robert,i have a question about your feature maptip widget when you have a chance. Is it only functional with polygons or can you use points and lines as well? i cant seem to get it to work. thanks for your help as always. Gerald
Robert,I have found that 2 other searches do sort the results in the data grid. The 1 search that does not sort in the data has multiple search expressions set - so I have the drop-down to pick what field I would like to search. The 2 searches that sort properly only have 1 search criteria/expression.Thanks RobertEric V
REACH_Num = [value]
Dave, It is as simple as:REACH_Num = [value]The single quotes tell the underlying data base that you are attempting to search for a string. So no single quotes means a number or something else.
private function fnCreToolTip(e:ListEvent):void { switch(e.type) { case ListEvent.ITEM_ROLL_OVER: { try{ ToolTipManager.destroyToolTip(myTip); } catch(error:Error){} //creates a tooltip. myTip = ToolTipManager.createToolTip(cbSearch.dataProvider[e.rowIndex].label,stage.mouseX+10,stage.mouseY) as ToolTip; // array2 is id of arraylist break; } case ListEvent.ITEM_ROLL_OUT: { //destroy the created tooltip, so that we can create a new one for others. try{ ToolTipManager.destroyToolTip(myTip); } catch(error:Error){} break; } case ListEvent.CHANGE: { //destroy the created tooltip, so that we can create a new one for others. ToolTipManager.destroyToolTip(myTip); break; } } }
<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"/>
<symbols> <simplefillsymbol color="0xff0000" alpha="0.00001"> <outline color="0xff0000" alpha="0.8" width="2"/> </simplefillsymbol>
Lisa, Currently the only marker symbol that is supported is the picturemarkersymbol. I will look at changing this in the next release.
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.
Los miembros registrados pueden publicar, seguir actualizaciones y más. ¿Nuevo aquí? Regístrate gratis.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.