<?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: Disable Move/Scale/Rotate on Editor widget in Web AppBuilder Custom Widgets Questions</title>
    <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/disable-move-scale-rotate-on-editor-widget/m-p/704477#M84</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ciprian,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; I am not aware of a way to do that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 30 Apr 2015 14:37:42 GMT</pubDate>
    <dc:creator>RobertScheitlin__GISP</dc:creator>
    <dc:date>2015-04-30T14:37:42Z</dc:date>
    <item>
      <title>Disable Move/Scale/Rotate on Editor widget</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/disable-move-scale-rotate-on-editor-widget/m-p/704470#M77</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'm new to Web AppBuilder and JavaScript API and I'm implementing a small app for digitizing features over a orthophoto map. I'm using the developer version of the Web AppBuilder and an intranet Portal for ArcGIS.&lt;/P&gt;&lt;P&gt;I need to set a maximum scale for the map and disable the move/scale/rotate options when using the default editor widget.&lt;/P&gt;&lt;P&gt;I couldn't find a way to set a maximum scale for the map after the initialization of the map (ie when the editor widget is started), but I hooked to the "zoom-end" event of the map and if the user zooms out, the app automatically zooms back in. Is there a better way to do this?&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;this.blockScaleEvent =
&amp;nbsp; this.map.on("zoom-end", lang.hitch(this, function () {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (this.map.getScale() &amp;gt; 250) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this.map.setScale(250);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&amp;nbsp; }));&lt;/PRE&gt;&lt;P&gt;I couldn't find a way to disable the move/scale/rotate options when using the default editor widget. Can anyone help me with this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Ciprian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 05:37:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/disable-move-scale-rotate-on-editor-widget/m-p/704470#M77</guid>
      <dc:creator>CiprianLazar</dc:creator>
      <dc:date>2021-12-12T05:37:28Z</dc:date>
    </item>
    <item>
      <title>Re: Disable Move/Scale/Rotate on Editor widget</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/disable-move-scale-rotate-on-editor-widget/m-p/704471#M78</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;In map, you have methods to disable navigation :&lt;/P&gt;&lt;P&gt;&lt;A href="https://developers.arcgis.com/javascript/jsapi/map.html" title="https://developers.arcgis.com/javascript/jsapi/map.html"&gt;Map | API Reference | ArcGIS API for JavaScript&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE cellspacing="0" class="syntaxTABLE syntaxsummarytable"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD class="syntaxTABLE name"&gt;&lt;A href="https://developers.arcgis.com/javascript/jsapi/map.html#disableclickrecenter"&gt;disableClickRecenter()&lt;/A&gt;&lt;/TD&gt;&lt;TD class="syntaxTABLE return_type"&gt;&lt;CODE&gt;None&lt;/CODE&gt;&lt;/TD&gt;&lt;TD class="syntaxTABLE summary"&gt;Disallows clicking on a map to center it.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="syntaxTABLE name"&gt;&lt;A href="https://developers.arcgis.com/javascript/jsapi/map.html#disabledoubleclickzoom"&gt;disableDoubleClickZoom()&lt;/A&gt;&lt;/TD&gt;&lt;TD class="syntaxTABLE return_type"&gt;&lt;CODE&gt;None&lt;/CODE&gt;&lt;/TD&gt;&lt;TD class="syntaxTABLE summary"&gt;Disallows double clicking on a map to zoom in a level and center the map.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="syntaxTABLE name"&gt;&lt;A href="https://developers.arcgis.com/javascript/jsapi/map.html#disablekeyboardnavigation"&gt;disableKeyboardNavigation()&lt;/A&gt;&lt;/TD&gt;&lt;TD class="syntaxTABLE return_type"&gt;&lt;CODE&gt;None&lt;/CODE&gt;&lt;/TD&gt;&lt;TD class="syntaxTABLE summary"&gt;Disallows panning and zooming using the keyboard.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="syntaxTABLE name"&gt;&lt;A href="https://developers.arcgis.com/javascript/jsapi/map.html#disablemapnavigation"&gt;disableMapNavigation()&lt;/A&gt;&lt;/TD&gt;&lt;TD class="syntaxTABLE return_type"&gt;&lt;CODE&gt;None&lt;/CODE&gt;&lt;/TD&gt;&lt;TD class="syntaxTABLE summary"&gt;Disallows all map navigation except the slider and pan arrows.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="syntaxTABLE name"&gt;&lt;A href="https://developers.arcgis.com/javascript/jsapi/map.html#disablepan"&gt;disablePan()&lt;/A&gt;&lt;/TD&gt;&lt;TD class="syntaxTABLE return_type"&gt;&lt;CODE&gt;None&lt;/CODE&gt;&lt;/TD&gt;&lt;TD class="syntaxTABLE summary"&gt;Disallows panning a map using the mouse.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="syntaxTABLE name"&gt;&lt;A href="https://developers.arcgis.com/javascript/jsapi/map.html#disablerubberbandzoom"&gt;disableRubberBandZoom()&lt;/A&gt;&lt;/TD&gt;&lt;TD class="syntaxTABLE return_type"&gt;&lt;CODE&gt;None&lt;/CODE&gt;&lt;/TD&gt;&lt;TD class="syntaxTABLE summary"&gt;Disallows zooming in or out on a map using a bounding box.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="syntaxTABLE name"&gt;&lt;A href="https://developers.arcgis.com/javascript/jsapi/map.html#disablescrollwheelzoom"&gt;disableScrollWheelZoom()&lt;/A&gt;&lt;/TD&gt;&lt;TD class="syntaxTABLE return_type"&gt;&lt;CODE&gt;None&lt;/CODE&gt;&lt;/TD&gt;&lt;TD class="syntaxTABLE summary"&gt;Disallows zooming in or out on a map using the mouse scroll wheel.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="syntaxTABLE name"&gt;&lt;A href="https://developers.arcgis.com/javascript/jsapi/map.html#disableshiftdoubleclickzoom"&gt;disableShiftDoubleClickZoom()&lt;/A&gt;&lt;/TD&gt;&lt;TD class="syntaxTABLE return_type"&gt;&lt;CODE&gt;None&lt;/CODE&gt;&lt;/TD&gt;&lt;TD class="syntaxTABLE summary"&gt;Disallows shift double clicking on a map to zoom in a level and center the map.&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE cellspacing="0" class="syntaxTABLE syntaxsummarytable"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD class="syntaxTABLE name"&gt;&lt;A href="https://developers.arcgis.com/javascript/jsapi/map.html#hidepanarrows"&gt;hidePanArrows()&lt;/A&gt;&lt;/TD&gt;&lt;TD class="syntaxTABLE return_type"&gt;&lt;CODE&gt;None&lt;/CODE&gt;&lt;/TD&gt;&lt;TD class="syntaxTABLE summary"&gt;Hides the pan arrows from the map.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="syntaxTABLE name"&gt;&lt;A href="https://developers.arcgis.com/javascript/jsapi/map.html#hidezoomslider"&gt;hideZoomSlider()&lt;/A&gt;&lt;/TD&gt;&lt;TD class="syntaxTABLE return_type"&gt;&lt;CODE&gt;None&lt;/CODE&gt;&lt;/TD&gt;&lt;TD class="syntaxTABLE summary"&gt;Hides the zoom slider from the map.&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;STRONG&gt;&lt;A href="https://developers.arcgis.com/javascript/jsapi/map.html#hidezoomslider"&gt;https://developers.arcgis.com/javascript/jsapi/map.html#hidezoomslider&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2015 23:10:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/disable-move-scale-rotate-on-editor-widget/m-p/704471#M78</guid>
      <dc:creator>JeremieCornet1</dc:creator>
      <dc:date>2015-04-23T23:10:54Z</dc:date>
    </item>
    <item>
      <title>Re: Disable Move/Scale/Rotate on Editor widget</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/disable-move-scale-rotate-on-editor-widget/m-p/704472#M79</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ciprian,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; In the Edit widgets settings UI if you check "Disable Update Geometry" then you will not be able to move/scale/rotate the geometry, but you will still be able to delete and to update the attributes.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Apr 2015 00:46:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/disable-move-scale-rotate-on-editor-widget/m-p/704472#M79</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2015-04-24T00:46:17Z</dc:date>
    </item>
    <item>
      <title>Re: Disable Move/Scale/Rotate on Editor widget</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/disable-move-scale-rotate-on-editor-widget/m-p/704473#M80</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 don't want to disable all the zoom and pan options. I just want to force the user to digitize the features at a maximum scale to ensure a required accuracy. He must be able to zoom in and out, just not out of a predefined scale when the editor widget is active.&lt;/P&gt;&lt;P&gt;The code I wrote achieves that, but not in an optimum way. There are some "Request canceled" messages in the console every time the user tries to zoom out of the allowed scale. There is also an unnecessary zoom-out -&amp;gt; zoom-in animation.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Apr 2015 15:01:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/disable-move-scale-rotate-on-editor-widget/m-p/704473#M80</guid>
      <dc:creator>CiprianLazar</dc:creator>
      <dc:date>2015-04-24T15:01:07Z</dc:date>
    </item>
    <item>
      <title>Re: Disable Move/Scale/Rotate on Editor widget</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/disable-move-scale-rotate-on-editor-widget/m-p/704474#M81</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;That would be an option, but if a user makes a mistake when adding a feature, he would not be able to correct it. He would have to delete the feature and start all over again.&lt;/P&gt;&lt;P&gt;Can't I just disable the scale/move/rotate? It's too easy to accidentally move a feature and you might not even notice that you moved it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Apr 2015 15:08:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/disable-move-scale-rotate-on-editor-widget/m-p/704474#M81</guid>
      <dc:creator>CiprianLazar</dc:creator>
      <dc:date>2015-04-24T15:08:04Z</dc:date>
    </item>
    <item>
      <title>Re: Disable Move/Scale/Rotate on Editor widget</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/disable-move-scale-rotate-on-editor-widget/m-p/704475#M82</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ciprian,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; No, currently that is not a configurable option.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Apr 2015 15:33:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/disable-move-scale-rotate-on-editor-widget/m-p/704475#M82</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2015-04-24T15:33:58Z</dc:date>
    </item>
    <item>
      <title>Re: Disable Move/Scale/Rotate on Editor widget</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/disable-move-scale-rotate-on-editor-widget/m-p/704476#M83</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I was hoping for a programatically modification of the Editor widget in order to disable the scale/move/rotate. How and where should I interfere with esriBundle.toolbars.edit?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2015 12:03:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/disable-move-scale-rotate-on-editor-widget/m-p/704476#M83</guid>
      <dc:creator>CiprianLazar</dc:creator>
      <dc:date>2015-04-27T12:03:53Z</dc:date>
    </item>
    <item>
      <title>Re: Disable Move/Scale/Rotate on Editor widget</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/disable-move-scale-rotate-on-editor-widget/m-p/704477#M84</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ciprian,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; I am not aware of a way to do that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Apr 2015 14:37:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/disable-move-scale-rotate-on-editor-widget/m-p/704477#M84</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2015-04-30T14:37:42Z</dc:date>
    </item>
    <item>
      <title>Re: Disable Move/Scale/Rotate on Editor widget</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/disable-move-scale-rotate-on-editor-widget/m-p/704478#M85</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It appears moving can be disabled with the event handler:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;myEditor.editToolbar.on('graphic-move', function (e) {&lt;BR /&gt;&amp;nbsp;&amp;nbsp; throw('move is not allowed');&lt;BR /&gt; });&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This does not work for rotating and scaling. Throwing inside 'rotate' and 'scale' event handlers does not prevent the changes from happening (in expected way, at least) and the event object does seem to provide means of stopping the event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(Update) Just in case:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;require([&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; 'esri/dijit/editing/Editor'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; ...&lt;/P&gt;&lt;P&gt;], function (&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Editor,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; ...&lt;/P&gt;&lt;P&gt;) {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; var myEditor;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; myEditor = new Editor(params, 'editor-element');&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; ...&lt;/P&gt;&lt;P&gt;});&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Dec 2017 23:04:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/disable-move-scale-rotate-on-editor-widget/m-p/704478#M85</guid>
      <dc:creator>KonstantinLapine</dc:creator>
      <dc:date>2017-12-13T23:04:37Z</dc:date>
    </item>
    <item>
      <title>Re: Disable Move/Scale/Rotate on Editor widget</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/disable-move-scale-rotate-on-editor-widget/m-p/704479#M86</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jeremie,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have given the methods to disable the zooming of map through mouse-scroll, but where to apply this method inside a web appbuilder application?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Mar 2018 18:26:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/disable-move-scale-rotate-on-editor-widget/m-p/704479#M86</guid>
      <dc:creator>KavishGhime</dc:creator>
      <dc:date>2018-03-02T18:26:27Z</dc:date>
    </item>
    <item>
      <title>Re: Disable Move/Scale/Rotate on Editor widget</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/disable-move-scale-rotate-on-editor-widget/m-p/704480#M87</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;Hi Robert,&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;Where to apply the disable-zoom method inside a web appbuilder application`s code after unzipping, since I cannot find where the map is defined?&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Mar 2018 18:29:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/disable-move-scale-rotate-on-editor-widget/m-p/704480#M87</guid>
      <dc:creator>KavishGhime</dc:creator>
      <dc:date>2018-03-02T18:29:00Z</dc:date>
    </item>
    <item>
      <title>Re: Disable Move/Scale/Rotate on Editor widget</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/disable-move-scale-rotate-on-editor-widget/m-p/704481#M88</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Kavish,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; In the jimu.js folder find the MapManager.js this is where the code would go.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Mar 2018 18:33:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/disable-move-scale-rotate-on-editor-widget/m-p/704481#M88</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2018-03-02T18:33:24Z</dc:date>
    </item>
    <item>
      <title>Re: Disable Move/Scale/Rotate on Editor widget</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/disable-move-scale-rotate-on-editor-widget/m-p/704482#M89</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Robert,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for the location where I can edit the map for zoom disable, which can be found in &lt;STRONG&gt;wab&lt;/STRONG&gt; application downloaded form&amp;nbsp;WAB developer edition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Actually I forgot to mention one thing, I downloaded&amp;nbsp;the web appbuilder application from ArcGIS Online. And, under jimu.js folder, there is no "MapManager.js" &lt;/STRONG&gt;(as compared to developer edition, the files are less when downloaded from ArcGIS Online)&lt;STRONG&gt;. So, where to find in this situation?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Kavish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Mar 2018 18:58:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/disable-move-scale-rotate-on-editor-widget/m-p/704482#M89</guid>
      <dc:creator>KavishGhime</dc:creator>
      <dc:date>2018-03-02T18:58:20Z</dc:date>
    </item>
    <item>
      <title>Re: Disable Move/Scale/Rotate on Editor widget</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/disable-move-scale-rotate-on-editor-widget/m-p/704483#M90</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Kavish,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;That is quite a bit harder then. In the jimu.js\main.js search for "d.hideZoomSlider();"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;d is the var for map. So right after that semicolon you can add your code.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Mar 2018 19:45:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/disable-move-scale-rotate-on-editor-widget/m-p/704483#M90</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2018-03-02T19:45:47Z</dc:date>
    </item>
    <item>
      <title>Re: Disable Move/Scale/Rotate on Editor widget</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/disable-move-scale-rotate-on-editor-widget/m-p/704484#M91</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello &lt;A href="https://community.esri.com/migrated-users/3101"&gt;Robert Scheitlin&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Apologies for a little late response. The solution you gave me, worked. I was able to disable mouse-scroll using the variable "d", which is the map`s variable. Only thing is, the map zooms fro initial scroll, and then it gets disable. Any view on this small issue?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Kavish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Mar 2018 18:52:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/disable-move-scale-rotate-on-editor-widget/m-p/704484#M91</guid>
      <dc:creator>KavishGhime</dc:creator>
      <dc:date>2018-03-07T18:52:29Z</dc:date>
    </item>
    <item>
      <title>Re: Disable Move/Scale/Rotate on Editor widget</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/disable-move-scale-rotate-on-editor-widget/m-p/704485#M92</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Kavish,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Only thing is, the map zooms fro initial scroll, and then it gets disable&lt;/BLOCKQUOTE&gt;&lt;P&gt;So I am not sure I am following here. What do you mean it zooms from initial scroll?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Mar 2018 19:09:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/disable-move-scale-rotate-on-editor-widget/m-p/704485#M92</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2018-03-07T19:09:05Z</dc:date>
    </item>
    <item>
      <title>Re: Disable Move/Scale/Rotate on Editor widget</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/disable-move-scale-rotate-on-editor-widget/m-p/704486#M93</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Robert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When the application is loaded, and I try to scroll the mouse the map zooms(zoom-in or zoom-out) for that initial mouse scroll, and then the map gets locked (means, after this, i cannot scroll the map further -- the mouse scrolling is disabled -- which is what I am achieving).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just want to know why the initial scrolling makes the map to zoom (after that scrolling is disabled), or is it the way it works in 3.23 JS API?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Kavish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Mar 2018 20:53:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/disable-move-scale-rotate-on-editor-widget/m-p/704486#M93</guid>
      <dc:creator>KavishGhime</dc:creator>
      <dc:date>2018-03-07T20:53:41Z</dc:date>
    </item>
    <item>
      <title>Re: Disable Move/Scale/Rotate on Editor widget</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/disable-move-scale-rotate-on-editor-widget/m-p/704487#M94</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Kavish,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Using minified code like you are it is to hard for me direct you to the appropriate area. You really need to use WAB Developer.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Mar 2018 01:16:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/disable-move-scale-rotate-on-editor-widget/m-p/704487#M94</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2018-03-08T01:16:05Z</dc:date>
    </item>
    <item>
      <title>Re: Disable Move/Scale/Rotate on Editor widget</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/disable-move-scale-rotate-on-editor-widget/m-p/704488#M95</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Robert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yeah, exactly what I thought before -- to use Web AppBuilder instead of working on ArcGIS Online downloaded minified version app code.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for clearing this&amp;nbsp;and for your help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Kavish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Mar 2018 17:42:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/disable-move-scale-rotate-on-editor-widget/m-p/704488#M95</guid>
      <dc:creator>KavishGhime</dc:creator>
      <dc:date>2018-03-08T17:42:32Z</dc:date>
    </item>
  </channel>
</rss>

