<?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: How to save the drawing done on the map by user ? in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-save-the-drawing-done-on-the-map-by-user/m-p/43506#M3776</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hey guys...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The query which I put in first, I've got solution for it...means I can take points from the user at wherever he/she clicks on the map...store the points as lat long and redraw them when &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;user demands...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;But its not about points now...Its much more....various drawings, attachments with the symbols and much important timeslider...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks to all who have taken interest in this thread...I sincerely want to ask you about the implementation of timeslider...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have studied the 4 examples provided in timeslider section of ArcGIS JavaScript API, but no modification available...I want to put my data in timesliders....&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;MORE IMPORTANT: I THINK TIME-SLIDER FEATURE IS NOT AVAILABLE IN &lt;/SPAN&gt;&lt;A _jive_internal="true" href="https://community.esri.com/WWW.ARCGIS.COM"&gt;WWW.ARCGIS.COM&lt;/A&gt;&lt;SPAN&gt; site....If it's there, do let me know how to acess it....&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 23 Mar 2012 14:56:07 GMT</pubDate>
    <dc:creator>nitinsatapara</dc:creator>
    <dc:date>2012-03-23T14:56:07Z</dc:date>
    <item>
      <title>How to save the drawing done on the map by user ?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-save-the-drawing-done-on-the-map-by-user/m-p/43499#M3769</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I am aiming to make an application in which user can do drawing...Its obvious that I will be providing some basic drawing tools like point, line, etc. For this I have used "drawing toolbar" sample code given under ArcGIS API for JavaScript. With this code there is essential functionality of drawing...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Now my question is how can I reflect this drawing made by the particular user when the same user is signing in for next time. In short, there is no code for saving this drawing. Here is what I think:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;when a user project any point on the map, I ll store the latitude longitude or geographic info of that point and save it in my database. When that user signs in again, I ll draw that point with the coordinates stored in my database. So apparently user will feel that this is the drawing he/she had done previously.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I don't know I am right or wrong and If I am right then also I don't know how to implement it. So please guide me on this. If possible please provide a brief code. Let it be for implementation of a very brief feature that I am looking for, for ex. Just provide a code for storing the coordinates of a point and then redrawing it at the same location. Please do needful.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Anticipating an early favorable reply,&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jan 2012 08:04:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-save-the-drawing-done-on-the-map-by-user/m-p/43499#M3769</guid>
      <dc:creator>nitinsatapara</dc:creator>
      <dc:date>2012-01-10T08:04:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to save the drawing done on the map by user ?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-save-the-drawing-done-on-the-map-by-user/m-p/43500#M3770</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Did you find a solution for this? I'm looking to implement something very similiar&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Mar 2012 16:17:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-save-the-drawing-done-on-the-map-by-user/m-p/43500#M3770</guid>
      <dc:creator>RogerFrampton</dc:creator>
      <dc:date>2012-03-15T16:17:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to save the drawing done on the map by user ?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-save-the-drawing-done-on-the-map-by-user/m-p/43501#M3771</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Here is some very high level steps.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;You will have to host a feature service backend, which allows your users to edit features and save it to geodatabase. At the same, you need to record the username associated to the feature. Next time when he/she signs in, do a query based on the log-in user name and pull out as a JavaScript featureLayer by calling featureLayer.setDefinitionExpression("Where Clause"). &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Please note, writing a current log-in user name to the new created feature could be accomplished automatically by ArcGIS Server 10.1 when turning on the editor tracking function on geodatabase.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Mar 2012 21:02:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-save-the-drawing-done-on-the-map-by-user/m-p/43501#M3771</guid>
      <dc:creator>JianHuang</dc:creator>
      <dc:date>2012-03-15T21:02:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to save the drawing done on the map by user ?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-save-the-drawing-done-on-the-map-by-user/m-p/43502#M3772</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks Jian...&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Your two lines of advice has made my direction of work very clear.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I never give up working on this task but it's too difficult and terrible work to do alone without guidance of anybody...&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;What you said in your answer is pretty much understood by me but will you please guide me for the same....with some more information...&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;please...I really want to dedicated my work in field of GIS...&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I am sure if you will help me, I will make a magnificent application and you'll be proud of that...please help me...&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Mar 2012 11:51:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-save-the-drawing-done-on-the-map-by-user/m-p/43502#M3772</guid>
      <dc:creator>nitinsatapara</dc:creator>
      <dc:date>2012-03-23T11:51:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to save the drawing done on the map by user ?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-save-the-drawing-done-on-the-map-by-user/m-p/43503#M3773</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I actually would approach this differently and does not require using the database. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I would use a cookie.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;All you have to do is&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1. Listen to events onGraphicAdd ,onGraphicRemove, on Dbl Click (for editing) of the GraphicsLayer&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2. On event, add or remove a cookie for the graphic&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;i.e. dojo.cookie (graphic:1, graphic.toJson(), 1000)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;3. You may also store a cookie with the number of graphics&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;4. On application load, just read and add the graphics back in.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Mar 2012 14:06:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-save-the-drawing-done-on-the-map-by-user/m-p/43503#M3773</guid>
      <dc:creator>JeffPace</dc:creator>
      <dc:date>2012-03-23T14:06:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to save the drawing done on the map by user ?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-save-the-drawing-done-on-the-map-by-user/m-p/43504#M3774</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;I actually would approach this differently and does not require using the database. &lt;BR /&gt;&lt;BR /&gt;I would use a cookie.&lt;BR /&gt;&lt;BR /&gt;All you have to do is&lt;BR /&gt;&lt;BR /&gt;1. Listen to events onGraphicAdd ,onGraphicRemove, on Dbl Click (for editing) of the GraphicsLayer&lt;BR /&gt;2. On event, add or remove a cookie for the graphic&lt;BR /&gt;i.e. dojo.cookie (graphic:1, graphic.toJson(), 1000)&lt;BR /&gt;3. You may also store a cookie with the number of graphics&lt;BR /&gt;&lt;BR /&gt;4. On application load, just read and add the graphics back in.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you want to go with a non-ArcServer approach there is a more modern alternative to using a cookie. Use the HTML5 WebStorage capabilities. That is... unless you have to support some archaic monstrosity of a browser like IE8.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Mar 2012 14:12:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-save-the-drawing-done-on-the-map-by-user/m-p/43504#M3774</guid>
      <dc:creator>MattMoyles</dc:creator>
      <dc:date>2012-03-23T14:12:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to save the drawing done on the map by user ?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-save-the-drawing-done-on-the-map-by-user/m-p/43505#M3775</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;I actually would approach this differently and does not require using the database. &lt;BR /&gt;&lt;BR /&gt;I would use a cookie.&lt;BR /&gt;&lt;BR /&gt;All you have to do is&lt;BR /&gt;&lt;BR /&gt;1. Listen to events onGraphicAdd ,onGraphicRemove, on Dbl Click (for editing) of the GraphicsLayer&lt;BR /&gt;2. On event, add or remove a cookie for the graphic&lt;BR /&gt;i.e. dojo.cookie (graphic:1, graphic.toJson(), 1000)&lt;BR /&gt;3. You may also store a cookie with the number of graphics&lt;BR /&gt;&lt;BR /&gt;4. On application load, just read and add the graphics back in.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks jeff....&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;By providing this solution, you made my problem's solution so easy which seems too difficult to me till now...&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I'll surely implement this...&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Mar 2012 14:50:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-save-the-drawing-done-on-the-map-by-user/m-p/43505#M3775</guid>
      <dc:creator>nitinsatapara</dc:creator>
      <dc:date>2012-03-23T14:50:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to save the drawing done on the map by user ?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-save-the-drawing-done-on-the-map-by-user/m-p/43506#M3776</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hey guys...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The query which I put in first, I've got solution for it...means I can take points from the user at wherever he/she clicks on the map...store the points as lat long and redraw them when &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;user demands...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;But its not about points now...Its much more....various drawings, attachments with the symbols and much important timeslider...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks to all who have taken interest in this thread...I sincerely want to ask you about the implementation of timeslider...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have studied the 4 examples provided in timeslider section of ArcGIS JavaScript API, but no modification available...I want to put my data in timesliders....&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;MORE IMPORTANT: I THINK TIME-SLIDER FEATURE IS NOT AVAILABLE IN &lt;/SPAN&gt;&lt;A _jive_internal="true" href="https://community.esri.com/WWW.ARCGIS.COM"&gt;WWW.ARCGIS.COM&lt;/A&gt;&lt;SPAN&gt; site....If it's there, do let me know how to acess it....&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Mar 2012 14:56:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-save-the-drawing-done-on-the-map-by-user/m-p/43506#M3776</guid>
      <dc:creator>nitinsatapara</dc:creator>
      <dc:date>2012-03-23T14:56:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to save the drawing done on the map by user ?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-save-the-drawing-done-on-the-map-by-user/m-p/43507#M3777</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Hey guys...&lt;BR /&gt;&lt;BR /&gt;The query which I put in first, I've got solution for it...means I can take points from the user at wherever he/she clicks on the map...store the points as lat long and redraw them when &lt;BR /&gt;user demands...&lt;BR /&gt;&lt;BR /&gt;But its not about points now...Its much more....various drawings, attachments with the symbols and much important timeslider...&lt;BR /&gt;&lt;BR /&gt;Thanks to all who have taken interest in this thread...I sincerely want to ask you about the implementation of timeslider...&lt;BR /&gt;&lt;BR /&gt;I have studied the 4 examples provided in timeslider section of ArcGIS JavaScript API, but no modification available...I want to put my data in timesliders....&lt;BR /&gt;&lt;BR /&gt;MORE IMPORTANT: I THINK TIME-SLIDER FEATURE IS NOT AVAILABLE IN &lt;A href="http://WWW.ARCGIS.COM"&gt;WWW.ARCGIS.COM&lt;/A&gt; site....If it's there, do let me know how to acess it....&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I've been making a lot of changes myself to the stock esri time slider. Here is the code I started out with. Notice that I changed the namespace and name of the class.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I originally posted it as a fix to the bug in the TimeSlider where you cannot have more than 1 timeslider on the same page. Other than that small fix, it's vanilla.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Teh Codez iz here: &lt;/SPAN&gt;&lt;A href="http://www.pastie.org/3489637"&gt;http://www.pastie.org/3489637&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Mar 2012 15:01:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-save-the-drawing-done-on-the-map-by-user/m-p/43507#M3777</guid>
      <dc:creator>MattMoyles</dc:creator>
      <dc:date>2012-03-23T15:01:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to save the drawing done on the map by user ?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-save-the-drawing-done-on-the-map-by-user/m-p/43508#M3778</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;I've been making a lot of changes myself to the stock esri time slider. Here is the code I started out with. Notice that I changed the namespace and name of the class.&lt;BR /&gt;&lt;BR /&gt;I originally posted it as a fix to the bug in the TimeSlider where you cannot have more than 1 timeslider on the same page. Other than that small fix, it's vanilla.&lt;BR /&gt;&lt;BR /&gt;Teh Codez iz here: &lt;A href="http://www.pastie.org/3489637"&gt;http://www.pastie.org/3489637&lt;/A&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;hats off...&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I am trying to put that code in my ide....but the functionality and features that you have used put me very far behind...&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;thanks for your response...&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Mar 2012 15:56:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-save-the-drawing-done-on-the-map-by-user/m-p/43508#M3778</guid>
      <dc:creator>nitinsatapara</dc:creator>
      <dc:date>2012-03-23T15:56:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to save the drawing done on the map by user ?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-save-the-drawing-done-on-the-map-by-user/m-p/43509#M3779</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Sorry I should have clarified more. That widget is a slightly updated clone of the esri time slider. Put that code into it's own file in /js/app/widgets/TemplatedTimeSlider.js and then add it to your main html page with a &amp;lt;script src="/js/app/widgets/TemplatedTimeSlider.js"&amp;gt;&amp;lt;/script&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This is the actual time slider widget itself. So you can use it as a base to start your modifications. Instead of &amp;lt;div data-dojo-type="esri.dijit.TimeSlider"&amp;gt;&amp;lt;/div&amp;gt; you would do &amp;lt;div data-dojo-type="app.widgets.TemplatedTimeSlider"&amp;gt;&amp;lt;/div&amp;gt;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Mar 2012 16:29:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-save-the-drawing-done-on-the-map-by-user/m-p/43509#M3779</guid>
      <dc:creator>MattMoyles</dc:creator>
      <dc:date>2012-03-23T16:29:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to save the drawing done on the map by user ?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-save-the-drawing-done-on-the-map-by-user/m-p/43510#M3780</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Sorry I should have clarified more. That widget is a slightly updated clone of the esri time slider. Put that code into it's own file in /js/app/widgets/TemplatedTimeSlider.js and then add it to your main html page with a &amp;lt;script src="/js/app/widgets/TemplatedTimeSlider.js"&amp;gt;&amp;lt;/script&amp;gt;&lt;BR /&gt;&lt;BR /&gt;This is the actual time slider widget itself. So you can use it as a base to start your modifications. Instead of &amp;lt;div data-dojo-type="esri.dijit.TimeSlider"&amp;gt;&amp;lt;/div&amp;gt; you would do &amp;lt;div data-dojo-type="app.widgets.TemplatedTimeSlider"&amp;gt;&amp;lt;/div&amp;gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I am still not able to put it live in my program...I take the basic example of esri.digit.timeslider and then replace it with app.widgets.TemplatedTimeSlider but its not working...the map is not loading..something's wrong...please guide me...&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Mar 2012 07:24:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-save-the-drawing-done-on-the-map-by-user/m-p/43510#M3780</guid>
      <dc:creator>nitinsatapara</dc:creator>
      <dc:date>2012-03-28T07:24:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to save the drawing done on the map by user ?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-save-the-drawing-done-on-the-map-by-user/m-p/43511#M3781</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello all,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I want to provide editing, drawing functionalities on the webmaps to client and I briefly know how to do it. The point where I am stuck is how to save the user's work...I have got 3-4&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;solutions cum hints to achieve this. but I am not able to do so as there are certain negatives of each proposed hint.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;GIVE ATTENTION to that I am in no position to use ArcGIS web service...I am using JSAPI by ESRI and till that it's fine...I am able to implement various functionality available in samples in ArcGIS API...when it comes to save all the work, I am finding it bit difficult...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Please guide me...&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Mar 2012 08:34:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-save-the-drawing-done-on-the-map-by-user/m-p/43511#M3781</guid>
      <dc:creator>nitinsatapara</dc:creator>
      <dc:date>2012-03-28T08:34:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to save the drawing done on the map by user ?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-save-the-drawing-done-on-the-map-by-user/m-p/43512#M3782</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Ah found it - I knew I'd seen this thread - however I found it too late - I posted a new one&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums.arcgis.com/threads/79938-Save-load-graphics-to-loacl-storage"&gt;http://forums.arcgis.com/threads/79938-Save-load-graphics-to-loacl-storage&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In it I show how I am writing and reading from local storage, but need some pointers on editing/deleting&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Cheers&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;ACM&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Mar 2013 11:55:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-save-the-drawing-done-on-the-map-by-user/m-p/43512#M3782</guid>
      <dc:creator>AdrianMarsden</dc:creator>
      <dc:date>2013-03-15T11:55:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to save the drawing done on the map by user ?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-save-the-drawing-done-on-the-map-by-user/m-p/43513#M3783</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;I need the same kinda solution but in my case i want to store all the drawing into feature layers which can be rendered when the same user log in . He can make changes to the same and can save it again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Dec 2015 06:20:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-save-the-drawing-done-on-the-map-by-user/m-p/43513#M3783</guid>
      <dc:creator>saurabhgupta2</dc:creator>
      <dc:date>2015-12-29T06:20:08Z</dc:date>
    </item>
  </channel>
</rss>

