<?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 Is it possible to change the appearance of the Editor widget popup? in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/is-it-possible-to-change-the-appearance-of-the/m-p/331062#M30597</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My users would like to use the Editor widget to edit text fields with long values.&amp;nbsp; Is it possible to make the editing popup text boxes larger (and/or replace them with textareas so they are multiline)?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 12 Feb 2015 21:51:37 GMT</pubDate>
    <dc:creator>AshleyDePottey</dc:creator>
    <dc:date>2015-02-12T21:51:37Z</dc:date>
    <item>
      <title>Is it possible to change the appearance of the Editor widget popup?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/is-it-possible-to-change-the-appearance-of-the/m-p/331062#M30597</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My users would like to use the Editor widget to edit text fields with long values.&amp;nbsp; Is it possible to make the editing popup text boxes larger (and/or replace them with textareas so they are multiline)?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2015 21:51:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/is-it-possible-to-change-the-appearance-of-the/m-p/331062#M30597</guid>
      <dc:creator>AshleyDePottey</dc:creator>
      <dc:date>2015-02-12T21:51:37Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to change the appearance of the Editor widget popup?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/is-it-possible-to-change-the-appearance-of-the/m-p/331063#M30598</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ashley, I've never edited the out of the box widgets but I think it is possible. You also can create custom widgets from scratch, either way you would have to start by installing &lt;A href="https://developers.arcgis.com/web-appbuilder/"&gt;Web AppBuilder for Developers&lt;/A&gt;‌, there are many blogs and posting that can help with the installation if you have questions. Also consider joining and posting questions to the &lt;A href="https://community.esri.com/group/1294"&gt;Web AppBuilder&lt;/A&gt; Custom Widgets group. Hope this helps and good luck.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2015 22:09:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/is-it-possible-to-change-the-appearance-of-the/m-p/331063#M30598</guid>
      <dc:creator>BenGrod</dc:creator>
      <dc:date>2015-02-12T22:09:06Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to change the appearance of the Editor widget popup?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/is-it-possible-to-change-the-appearance-of-the/m-p/331064#M30599</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This &lt;A href="https://developers.arcgis.com/javascript/jssamples/mobile_citizenrequest.html"&gt;sample&lt;/A&gt; uses a text area for one of the fields in the Editor. The Editor widget uses the styling of the &lt;A href="https://developers.arcgis.com/javascript/jsapi/attributeinspector-amd.html"&gt;Attribute Inspector&lt;/A&gt;‌. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Feb 2015 13:37:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/is-it-possible-to-change-the-appearance-of-the/m-p/331064#M30599</guid>
      <dc:creator>KenBuja</dc:creator>
      <dc:date>2015-02-13T13:37:25Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to change the appearance of the Editor widget popup?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/is-it-possible-to-change-the-appearance-of-the/m-p/331065#M30600</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Ken!&amp;nbsp; For anyone else trying to do the same thing, I added ""stringFieldOption": AttributeInspector.STRING_FIELD_OPTION_TEXTAREA" to the fieldInfo object for each field I wanted to display as a textbox.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;var layerInfos = [{
&amp;nbsp;&amp;nbsp;&amp;nbsp; "featureLayer": editlayer,
&amp;nbsp;&amp;nbsp;&amp;nbsp; "fieldInfos": [
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "fieldName": "Name",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "label": "Title",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "isEditable": true,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "stringFieldOption": AttributeInspector.STRING_FIELD_OPTION_TEXTAREA
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; },
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "fieldName": "PopupInfo",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "label": "Description",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "isEditable": true,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "stringFieldOption": AttributeInspector.STRING_FIELD_OPTION_TEXTAREA
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp;&amp;nbsp; ]
}]


var settings = {
&amp;nbsp;&amp;nbsp;&amp;nbsp; map: map,
&amp;nbsp;&amp;nbsp;&amp;nbsp; layerInfos: layerInfos,
&amp;nbsp;&amp;nbsp;&amp;nbsp; geometryService: new GeometryService(config.geometryserviceurl)
};
var params = {
&amp;nbsp;&amp;nbsp;&amp;nbsp; settings: settings
};
editorWidget = new Editor(params, editorWidgetDiv);
editorWidget.startup();&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 15:40:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/is-it-possible-to-change-the-appearance-of-the/m-p/331065#M30600</guid>
      <dc:creator>AshleyDePottey</dc:creator>
      <dc:date>2021-12-11T15:40:45Z</dc:date>
    </item>
  </channel>
</rss>

