<?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: Implement Time Slider programmaticaly in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/implement-time-slider-programmaticaly/m-p/140711#M13086</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Another option is to create the Time Slider widget in your app and use its&amp;nbsp;capabilities(play, pause, time-extent-change) without displaying it on the map. &amp;nbsp;Here is a very rough example showing how we can show time on the map without displaying the slider widget itself.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Demo showing using the time slider widget without displaying the widget in the app&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="http://jsbin.com/fegusawewo/edit?html,css,output" title="http://jsbin.com/fegusawewo/edit?html,css,output"&gt;JS Bin - Collaborative JavaScript Debugging&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Its also possible to get a fairly wide range of looks using the default time slider and some custom css. For example the following apps use the Time Slider widget and modify its appearance with css.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="http://www.arcgis.com/apps/TimeAware/index.html?appid=51168c8c1ba449e4a966a67234ee064b" title="http://www.arcgis.com/apps/TimeAware/index.html?appid=51168c8c1ba449e4a966a67234ee064b"&gt;http://www.arcgis.com/apps/TimeAware/index.html?appid=51168c8c1ba449e4a966a67234ee064b&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="http://www.maps.arcgis.com/apps/TimeAware/index.html?appid=62bc7c527d10450eb0b08a33d7f1aea8" title="http://www.maps.arcgis.com/apps/TimeAware/index.html?appid=62bc7c527d10450eb0b08a33d7f1aea8"&gt;http://www.maps.arcgis.com/apps/TimeAware/index.html?appid=62bc7c527d10450eb0b08a33d7f1aea8&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 24 Nov 2016 00:38:30 GMT</pubDate>
    <dc:creator>KellyHutchins</dc:creator>
    <dc:date>2016-11-24T00:38:30Z</dc:date>
    <item>
      <title>Implement Time Slider programmaticaly</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/implement-time-slider-programmaticaly/m-p/140707#M13082</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;We are implementing Time slider programmaticaly (for the reasons we cannot customize the standard one according to requirements).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;app.currentTimeSeriesLayer = initialised earlier and added to map// visible on the map&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;function MyTimeSliderRun()&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;var&amp;nbsp;&lt;SPAN&gt;timeIntervalMilliSeconds = 5000;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;var startYear = 1995;&lt;BR /&gt; var endYear = 2016;&lt;BR /&gt; var Years = endYear - startYear;&lt;BR /&gt; var increment = 0;&lt;BR /&gt; for (i = 0; i &amp;lt;= Years; i++) {&lt;BR /&gt; setTimeout(function () {&lt;BR /&gt; var layerDefinitionsTS = [];&lt;BR /&gt; app.currentTimeSeriesLayer.setLayerDefinitions(null, true);&lt;BR /&gt; var curYear = startYear + increment;&lt;BR /&gt; increment = increment + 1;&lt;BR /&gt; layerDefinitionsTS[app.currentTimeSeriesLayer.visibleLayers[0]] = "Year = " + curYear;&lt;BR /&gt; app.currentTimeSeriesLayer.setLayerDefinitions(layerDefinitionsTS, false);&lt;BR /&gt; }, timeIntervalMilliSeconds*i);&lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We cannot see the layer on the map, what is a possible reason?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Code in SandBox&lt;/P&gt;&lt;P&gt;&amp;lt;!DOCTYPE html&amp;gt;&lt;BR /&gt;&amp;lt;html&amp;gt;&lt;BR /&gt; &amp;lt;head&amp;gt;&lt;BR /&gt; &amp;lt;meta http-equiv="Content-Type" content="text/html; charset=utf-8"&amp;gt;&lt;BR /&gt; &lt;BR /&gt; &amp;lt;meta name="viewport" content="initial-scale=1, maximum-scale=1,user-scalable=no"&amp;gt;&lt;BR /&gt; &amp;lt;title&amp;gt;Well completion dates for the Hugoton Gas Field Over Time&amp;lt;/title&amp;gt;&lt;BR /&gt; &lt;BR /&gt;&lt;SPAN&gt; &amp;lt;link rel="stylesheet" href="&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=https%3A%2F%2Fjs.arcgis.com%2F3.18%2Fdijit%2Fthemes%2Fclaro%2Fclaro.css" rel="nofollow" target="_blank"&gt;https://js.arcgis.com/3.18/dijit/themes/claro/claro.css&lt;/A&gt;&lt;SPAN&gt;"&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &amp;lt;link rel="stylesheet" href="&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=https%3A%2F%2Fjs.arcgis.com%2F3.18%2Fesri%2Fcss%2Fesri.css" rel="nofollow" target="_blank"&gt;https://js.arcgis.com/3.18/esri/css/esri.css&lt;/A&gt;&lt;SPAN&gt;"&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt; &amp;lt;style&amp;gt;&lt;BR /&gt; html, body, #mapDiv {&lt;BR /&gt; padding:0;&lt;BR /&gt; margin:0;&lt;BR /&gt; height:100%;&lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;#mapDiv {&lt;BR /&gt; position: relative;&lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;#bottomPanel {&lt;BR /&gt; left: 50%;&lt;BR /&gt; margin: 0 auto;&lt;BR /&gt; margin-left: -500px;&lt;BR /&gt; position: absolute; &lt;BR /&gt; bottom: 2.5em;&lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;#timeInfo{&lt;BR /&gt; border-radius: 4px;&lt;BR /&gt; border: solid 2px #ccc;&lt;BR /&gt; background-color: #fff;&lt;BR /&gt; display: block;&lt;BR /&gt; padding: 5px;&lt;BR /&gt; position: relative;&lt;BR /&gt; text-align: center;&lt;BR /&gt; width: 1000px;&lt;BR /&gt; z-index: 99;&lt;BR /&gt; }&lt;BR /&gt; &amp;lt;/style&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;lt;script src="&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=https%3A%2F%2Fjs.arcgis.com%2F3.18%2F" rel="nofollow" target="_blank"&gt;https://js.arcgis.com/3.18/&lt;/A&gt;&lt;SPAN&gt;"&amp;gt;&amp;lt;/script&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt; &amp;lt;script&amp;gt;&lt;BR /&gt; var map;&lt;BR /&gt; require([&lt;BR /&gt; "esri/map", "esri/layers/ArcGISDynamicMapServiceLayer", &lt;BR /&gt; "esri/TimeExtent", "esri/dijit/TimeSlider",&lt;BR /&gt; "dojo/_base/array", "dojo/dom", "dojo/domReady!"&lt;BR /&gt; ], function(&lt;BR /&gt; Map, ArcGISDynamicMapServiceLayer, &lt;BR /&gt; TimeExtent, TimeSlider,&lt;BR /&gt; arrayUtils, dom&lt;BR /&gt; ) {&lt;BR /&gt; map = new Map("mapDiv", {&lt;BR /&gt; basemap: "streets",&lt;BR /&gt; center: [-101.15, 37.604],&lt;BR /&gt; zoom: 9&lt;BR /&gt; });&lt;BR /&gt;&lt;SPAN&gt;//&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=https%3A%2F%2Fdevelopers.arcgis.com%2Fjavascript%2F3%2Fsandbox%2Fsandbox.html%3Fsample%3Dtime_sliderwithdynamiclayer" rel="nofollow" target="_blank"&gt;https://developers.arcgis.com/javascript/3/sandbox/sandbox.html?sample=time_sliderwithdynamiclayer&lt;/A&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;SPAN&gt; var opLayer = new ArcGISDynamicMapServiceLayer("&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=https%3A%2F%2Fsampleserver3.arcgisonline.com%2FArcGIS%2Frest%2Fservices%2FPetroleum%2FKSWells%2FMapServer" rel="nofollow" target="_blank"&gt;https://sampleserver3.arcgisonline.com/ArcGIS/rest/services/Petroleum/KSWells/MapServer&lt;/A&gt;&lt;SPAN&gt;");&lt;/SPAN&gt;&lt;BR /&gt; opLayer.setVisibleLayers([0]);&lt;/P&gt;&lt;P&gt;//apply a definition expression so only some features are shown &lt;BR /&gt; var layerDefinitions = [];&lt;BR /&gt; layerDefinitions[0] = "FIELD_KID=1000148164";&lt;BR /&gt; opLayer.setLayerDefinitions(layerDefinitions);&lt;/P&gt;&lt;P&gt;//add the gas fields layer to the map &lt;BR /&gt; map.addLayers([opLayer]);&lt;/P&gt;&lt;P&gt;map.on("layers-add-result", MyRunTimeSeries);&lt;/P&gt;&lt;P&gt;var currentTimeSeriesLayer = opLayer;&lt;BR /&gt; function MyRunTimeSeries()&lt;BR /&gt; {&lt;BR /&gt; var timeIntervalMilliSeconds = 10000;&lt;BR /&gt; var startYear = 1995;&lt;BR /&gt; var endYear = 2016;&lt;BR /&gt; var Years = endYear - startYear;&lt;BR /&gt; var increment = 0;&lt;BR /&gt; currentTimeSeriesLayer.setDisableClientCaching(true);&lt;BR /&gt; for (i = 0; i &amp;lt;= Years; i++) {&lt;BR /&gt; setTimeout(function () {&lt;BR /&gt; var layerDefinitionsTS = [];&lt;BR /&gt; currentTimeSeriesLayer.setLayerDefinitions(null, true);&lt;BR /&gt; var curYear = startYear + increment;&lt;BR /&gt; increment = increment + 1;&lt;BR /&gt; if (increment == 0)&lt;BR /&gt; {&lt;BR /&gt; layerDefinitionsTS[currentTimeSeriesLayer.visibleLayers[0]] = "COUNTY_COD = " + 7;&lt;BR /&gt; }&lt;BR /&gt; if (increment == 1)&lt;BR /&gt; {&lt;BR /&gt; layerDefinitionsTS[currentTimeSeriesLayer.visibleLayers[0]] = "COUNTY_COD = " + 9;&lt;BR /&gt; }&lt;BR /&gt; if (increment == 2)&lt;BR /&gt; {&lt;BR /&gt; layerDefinitionsTS[currentTimeSeriesLayer.visibleLayers[0]] = "COUNTY_COD = " + 125;&lt;BR /&gt; } &lt;BR /&gt; if (increment == 3)&lt;BR /&gt; {&lt;BR /&gt; layerDefinitionsTS[currentTimeSeriesLayer.visibleLayers[0]] = "COUNTY_COD = " + 135;&lt;BR /&gt; } &lt;BR /&gt; if (increment &amp;gt; 3)&lt;BR /&gt; {currentTimeSeriesLayer.setLayerDefinitions(null, false);}&lt;BR /&gt; else {&lt;BR /&gt; currentTimeSeriesLayer.setLayerDefinitions(layerDefinitionsTS, false);&lt;BR /&gt; }&lt;BR /&gt; currentTimeSeriesLayer.refresh();&lt;BR /&gt; console.log("increment: "+increment)&lt;BR /&gt; console.log("layerDefinitionsTS: "+layerDefinitionsTS);&lt;BR /&gt; &lt;BR /&gt; console.log(currentTimeSeriesLayer.layerDefinitions);&lt;BR /&gt; console.log(map); &lt;BR /&gt; console.log(map.layerIDs);&lt;BR /&gt; }, timeIntervalMilliSeconds*i);&lt;BR /&gt; }&lt;BR /&gt; }&lt;BR /&gt; //map.on("layers-add-result", initSlider);&lt;BR /&gt; function initSlider() {&lt;BR /&gt; var timeSlider = new TimeSlider({&lt;BR /&gt; style: "width: 100%;"&lt;BR /&gt; }, dom.byId("timeSliderDiv"));&lt;BR /&gt; map.setTimeSlider(timeSlider);&lt;BR /&gt; &lt;BR /&gt; var timeExtent = new TimeExtent();&lt;BR /&gt; timeExtent.startTime = new Date("1/1/1921 UTC");&lt;BR /&gt; timeExtent.endTime = new Date("12/31/2009 UTC");&lt;BR /&gt; timeSlider.setThumbCount(2);&lt;BR /&gt; timeSlider.createTimeStopsByTimeInterval(timeExtent, 2, "esriTimeUnitsYears");&lt;BR /&gt; timeSlider.setThumbIndexes([0,1]);&lt;BR /&gt; timeSlider.setThumbMovingRate(2000);&lt;BR /&gt; timeSlider.startup();&lt;BR /&gt; &lt;BR /&gt; //add labels for every other time stop&lt;BR /&gt; var labels = arrayUtils.map(timeSlider.timeStops, function(timeStop, i) { &lt;BR /&gt; if ( i % 2 === 0 ) {&lt;BR /&gt; return timeStop.getUTCFullYear(); &lt;BR /&gt; } else {&lt;BR /&gt; return "";&lt;BR /&gt; }&lt;BR /&gt; }); &lt;BR /&gt; &lt;BR /&gt; timeSlider.setLabels(labels);&lt;BR /&gt; &lt;BR /&gt; timeSlider.on("time-extent-change", function(evt) {&lt;BR /&gt; var startValString = evt.startTime.getUTCFullYear();&lt;BR /&gt; var endValString = evt.endTime.getUTCFullYear();&lt;BR /&gt; dom.byId("daterange").innerHTML = "&amp;lt;i&amp;gt;" + startValString + " and " + endValString + "&amp;lt;\/i&amp;gt;";&lt;BR /&gt; });&lt;BR /&gt; }&lt;BR /&gt; });&lt;BR /&gt; &amp;lt;/script&amp;gt;&lt;BR /&gt; &amp;lt;/head&amp;gt;&lt;BR /&gt; &amp;lt;body class="claro"&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;div id="mapDiv"&amp;gt;&lt;BR /&gt; &amp;lt;div id="bottomPanel"&amp;gt;&lt;BR /&gt; &amp;lt;div id="timeInfo"&amp;gt;&lt;BR /&gt; &amp;lt;div&amp;gt;Hugoton Gas Field Wells from &amp;lt;span id="daterange"&amp;gt;1921 to 2009&amp;lt;/span&amp;gt; (Completion date)&amp;lt;/div&amp;gt;&lt;BR /&gt; &amp;lt;div id="timeSliderDiv"&amp;gt;&amp;lt;/div&amp;gt;&lt;BR /&gt; &amp;lt;/div&amp;gt;&lt;BR /&gt; &amp;lt;/div&amp;gt;&lt;BR /&gt; &amp;lt;/div&amp;gt;&lt;BR /&gt; &amp;lt;/body&amp;gt;&lt;BR /&gt;&amp;lt;/html&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Nov 2016 04:03:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/implement-time-slider-programmaticaly/m-p/140707#M13082</guid>
      <dc:creator>PitersonPaulgek</dc:creator>
      <dc:date>2016-11-23T04:03:36Z</dc:date>
    </item>
    <item>
      <title>Re: Implement Time Slider programmaticaly</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/implement-time-slider-programmaticaly/m-p/140708#M13083</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Piterson,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;You say you are trying to build a time slider. So why are you not using setTimeDefinition instead of&amp;nbsp;&lt;SPAN style="background-color: #ffffff;"&gt;setLayerDefinitions?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&lt;A class="link-titled" href="https://developers.arcgis.com/javascript/3/jsapi/featurelayer-amd.html#settimedefinition" title="https://developers.arcgis.com/javascript/3/jsapi/featurelayer-amd.html#settimedefinition"&gt;FeatureLayer | API Reference | ArcGIS API for JavaScript 3.18 | setTimeDefinition&lt;/A&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Nov 2016 14:17:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/implement-time-slider-programmaticaly/m-p/140708#M13083</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2016-11-23T14:17:44Z</dc:date>
    </item>
    <item>
      <title>Re: Implement Time Slider programmaticaly</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/implement-time-slider-programmaticaly/m-p/140709#M13084</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Robert,&lt;/P&gt;&lt;P&gt;Thank you for your response.&lt;/P&gt;&lt;P&gt;Reasons:&lt;/P&gt;&lt;P&gt;1) we use&amp;nbsp;&lt;SPAN style="color: #636363; background-color: #fefefe;"&gt;ArcGISDynamicMapServiceLayer.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #636363; background-color: #fefefe;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #636363; background-color: #fefefe;"&gt;Should we use&amp;nbsp;FeatureLayer?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Nov 2016 16:08:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/implement-time-slider-programmaticaly/m-p/140709#M13084</guid>
      <dc:creator>PitersonPaulgek</dc:creator>
      <dc:date>2016-11-23T16:08:02Z</dc:date>
    </item>
    <item>
      <title>Re: Implement Time Slider programmaticaly</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/implement-time-slider-programmaticaly/m-p/140710#M13085</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could do that or set the maps timeExtent and the dynamic layer will use the maps time extent.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Nov 2016 16:15:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/implement-time-slider-programmaticaly/m-p/140710#M13085</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2016-11-23T16:15:06Z</dc:date>
    </item>
    <item>
      <title>Re: Implement Time Slider programmaticaly</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/implement-time-slider-programmaticaly/m-p/140711#M13086</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Another option is to create the Time Slider widget in your app and use its&amp;nbsp;capabilities(play, pause, time-extent-change) without displaying it on the map. &amp;nbsp;Here is a very rough example showing how we can show time on the map without displaying the slider widget itself.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Demo showing using the time slider widget without displaying the widget in the app&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="http://jsbin.com/fegusawewo/edit?html,css,output" title="http://jsbin.com/fegusawewo/edit?html,css,output"&gt;JS Bin - Collaborative JavaScript Debugging&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Its also possible to get a fairly wide range of looks using the default time slider and some custom css. For example the following apps use the Time Slider widget and modify its appearance with css.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="http://www.arcgis.com/apps/TimeAware/index.html?appid=51168c8c1ba449e4a966a67234ee064b" title="http://www.arcgis.com/apps/TimeAware/index.html?appid=51168c8c1ba449e4a966a67234ee064b"&gt;http://www.arcgis.com/apps/TimeAware/index.html?appid=51168c8c1ba449e4a966a67234ee064b&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="http://www.maps.arcgis.com/apps/TimeAware/index.html?appid=62bc7c527d10450eb0b08a33d7f1aea8" title="http://www.maps.arcgis.com/apps/TimeAware/index.html?appid=62bc7c527d10450eb0b08a33d7f1aea8"&gt;http://www.maps.arcgis.com/apps/TimeAware/index.html?appid=62bc7c527d10450eb0b08a33d7f1aea8&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Nov 2016 00:38:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/implement-time-slider-programmaticaly/m-p/140711#M13086</guid>
      <dc:creator>KellyHutchins</dc:creator>
      <dc:date>2016-11-24T00:38:30Z</dc:date>
    </item>
    <item>
      <title>Re: Implement Time Slider programmaticaly</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/implement-time-slider-programmaticaly/m-p/140712#M13087</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Kelly.&lt;/P&gt;&lt;P&gt;It is really makes sense.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Nov 2016 01:36:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/implement-time-slider-programmaticaly/m-p/140712#M13087</guid>
      <dc:creator>PitersonPaulgek</dc:creator>
      <dc:date>2016-11-24T01:36:34Z</dc:date>
    </item>
    <item>
      <title>Re: Implement Time Slider programmaticaly</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/implement-time-slider-programmaticaly/m-p/140713#M13088</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Robert, it works!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Nov 2016 01:38:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/implement-time-slider-programmaticaly/m-p/140713#M13088</guid>
      <dc:creator>PitersonPaulgek</dc:creator>
      <dc:date>2016-11-24T01:38:23Z</dc:date>
    </item>
  </channel>
</rss>

