<?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 Need to place ???Edit??? box around label. in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/need-to-place-edit-box-around-label/m-p/495245#M45998</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I�??m using this code as a starting point to edit user placed labels.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://help.arcgis.com/EN/webapi/javascript/arcgis/help/jssamples_start.htm"&gt;http://help.arcgis.com/EN/webapi/javascript/arcgis/help/jssamples_start.htm&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The labels are actually points that have a textSymbol as their symbol.&amp;nbsp; If you look at/run the sample above, the graphics (line, polygon, ect) display an �??edit�?? box around them when they are selected.&amp;nbsp; You can then pull/push on the box to resize it, move it or rotate it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;My label shows no such box.&amp;nbsp; I can select the text (if I actually click on a letter in the label, doesn�??t work if I click on ANY blank space within the label) and move it, but I don�??t get the edit box around it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Is this because it�??s a point feature?&amp;nbsp; Seems strange, because to select it, I don�??t have to actually pick the location of the point, just the text.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I really need that edit box to highlight it and allow the users to rotate and resize (as I said, I can move it, so it is getting sellected)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 16 Feb 2011 14:48:36 GMT</pubDate>
    <dc:creator>Anonymous User</dc:creator>
    <dc:date>2011-02-16T14:48:36Z</dc:date>
    <item>
      <title>Need to place ???Edit??? box around label.</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/need-to-place-edit-box-around-label/m-p/495245#M45998</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I�??m using this code as a starting point to edit user placed labels.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://help.arcgis.com/EN/webapi/javascript/arcgis/help/jssamples_start.htm"&gt;http://help.arcgis.com/EN/webapi/javascript/arcgis/help/jssamples_start.htm&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The labels are actually points that have a textSymbol as their symbol.&amp;nbsp; If you look at/run the sample above, the graphics (line, polygon, ect) display an �??edit�?? box around them when they are selected.&amp;nbsp; You can then pull/push on the box to resize it, move it or rotate it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;My label shows no such box.&amp;nbsp; I can select the text (if I actually click on a letter in the label, doesn�??t work if I click on ANY blank space within the label) and move it, but I don�??t get the edit box around it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Is this because it�??s a point feature?&amp;nbsp; Seems strange, because to select it, I don�??t have to actually pick the location of the point, just the text.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I really need that edit box to highlight it and allow the users to rotate and resize (as I said, I can move it, so it is getting sellected)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Feb 2011 14:48:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/need-to-place-edit-box-around-label/m-p/495245#M45998</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2011-02-16T14:48:36Z</dc:date>
    </item>
    <item>
      <title>Re: Need to place �??Edit�?? box around label.</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/need-to-place-edit-box-around-label/m-p/495246#M45999</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I have a similar issue.&amp;nbsp; Point and Text graphics are not eligible to be scaled/rotated, and there is no "highlighting" of any graphic if you only turn on MOVE from the Edit Toolbar.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;As a result, though their edit tools have been activated, there is no flag of this to the user.&amp;nbsp; Of course, this could be worked around, but it seems like a feature that has any edit tool turned on ought to give some visual clue innately, much as polygons/polylines/multipoints already do for tools such as rotate and scale.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Haven't implemented it yet in my own code, but here is one idea for working around this.&amp;nbsp; Add MouseOver events for the graphics that are eligible to be edited.&amp;nbsp; Upon mosueover, use the getCurrentState() method of the editorToolbar to determine if the graphic in question has a tool (i.e. MOVE) activated.&amp;nbsp; Then at that point, you could change the cursor to something that denotes this graphic can be dragged around the map at leisure. (For example, that cursor with the 4 arrows pointing out from center, kinda like a compass).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hope this helps...it is my hope that this functionality will be fleshed out within the API down the line.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Feb 2011 17:26:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/need-to-place-edit-box-around-label/m-p/495246#M45999</guid>
      <dc:creator>MarkHoover</dc:creator>
      <dc:date>2011-02-16T17:26:24Z</dc:date>
    </item>
    <item>
      <title>Re: Need to place �??Edit�?? box around label.</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/need-to-place-edit-box-around-label/m-p/495247#M46000</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Mark,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for the response.&amp;nbsp; I have opened an incident about this.&amp;nbsp; The tech said she thinks it can be done.&amp;nbsp; I will post the solution (if they have one) when I get it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Doug&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Feb 2011 19:55:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/need-to-place-edit-box-around-label/m-p/495247#M46000</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2011-02-16T19:55:42Z</dc:date>
    </item>
    <item>
      <title>Re: Need to place �??Edit�?? box around label.</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/need-to-place-edit-box-around-label/m-p/495248#M46001</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Mark,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This is the response from ESRI, with a possible work around (I havn't looked at it yet).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;*** Do not write below this line ***&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Hello Doug,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have been working on the issue and after further analysis, it appears that the behavior encountered while selecting point graphic/text element while working with the Edit toolbar in AGS JavaScript API, seems to be current behavior-by-design. I have logged an enhancement request with development for further research and clarification. You can reference this bug using #NIM065254 [Enhancement request to display the Edit box while selecting point graphic/Text symbol using the Edit Toolbar. ]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you for bringing this issue to our attention. At this point, I would suggest you to please use the above number to track any progression with its status.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I wish I had a better option but currently, I can suggest an alternate workflow mentioned in the following sample code:&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://serverapps.esri.com/javascript_examples/text_symbol_demo/text_symbol_demo.html"&gt;http://serverapps.esri.com/javascript_examples/text_symbol_demo/text_symbol_demo.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Please let me know if you require any further assistance with the issue or have additional questions regarding the problem. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Sumedha S.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Feb 2011 14:20:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/need-to-place-edit-box-around-label/m-p/495248#M46001</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2011-02-17T14:20:56Z</dc:date>
    </item>
    <item>
      <title>Re: Need to place �??Edit�?? box around label.</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/need-to-place-edit-box-around-label/m-p/495249#M46002</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I figured it was by design.&amp;nbsp; Just wasn't great design in my opinion.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I implemented the workaround I discussed yesterday and it works pretty well.&amp;nbsp; Though the graphic may not be giving off a visual cue itself, a simple mouseover tells the user instantly whether a given graphic can be moved at the moment or not.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Feb 2011 14:37:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/need-to-place-edit-box-around-label/m-p/495249#M46002</guid>
      <dc:creator>MarkHoover</dc:creator>
      <dc:date>2011-02-17T14:37:35Z</dc:date>
    </item>
    <item>
      <title>Re: Need to place �??Edit�?? box around label.</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/need-to-place-edit-box-around-label/m-p/495250#M46003</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks, I might try that.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What I have found is that it's very hard to pick up the text, you have to actually click on the letter.&amp;nbsp; If you click between letters, it does not pick it up, just goes back into pan mode.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What is also a problem, is that you have to click once to select, and then again to start the move.&amp;nbsp; My users will not get this.&amp;nbsp; Took me awhile, and I knew what I was looking for.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Feb 2011 14:42:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/need-to-place-edit-box-around-label/m-p/495250#M46003</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2011-02-17T14:42:03Z</dc:date>
    </item>
    <item>
      <title>Re: Need to place �??Edit�?? box around label.</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/need-to-place-edit-box-around-label/m-p/495251#M46004</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Yeah, clicking the text is really tricky, haven't worked around yet.&amp;nbsp; That would take quite a bit of creativity.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I like that you have to click once before you start the move, to avoid accidentally moving a specifically placed graphic when all I wanted to do was pan.&amp;nbsp; If you don't want that behavior though, couldn't you just give each graphic its own invididual edit toolbar and activate it with the MOVE tool upon creation of the graphic?&amp;nbsp; Then once they click to actually select a graphic it could turn on the other tools such as ROTATE, SCALE, etc.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Feb 2011 15:40:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/need-to-place-edit-box-around-label/m-p/495251#M46004</guid>
      <dc:creator>MarkHoover</dc:creator>
      <dc:date>2011-02-17T15:40:53Z</dc:date>
    </item>
    <item>
      <title>Re: Need to place �??Edit�?? box around label.</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/need-to-place-edit-box-around-label/m-p/495252#M46005</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The selection of the text being so tricky is the big thing for me.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I really don't know.&amp;nbsp; And I'm kinda working on a deadline.&amp;nbsp; As this was going to be just a bonus to our users,&amp;nbsp; I'll hope that ESRI figures it out and add it in later.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Feb 2011 16:02:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/need-to-place-edit-box-around-label/m-p/495252#M46005</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2011-02-17T16:02:52Z</dc:date>
    </item>
  </channel>
</rss>

