<?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 esriSignInDialog in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/esrisignindialog/m-p/451543#M41717</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I am trying to customized the &lt;SPAN style="text-decoration: underline;"&gt;content of the&lt;/SPAN&gt; dialogbox used by the IdentityManager (according &lt;A class="link-titled" href="http://projectserver.dataplus.ru/arcgis_js_api/sdk/jsapi/identitymanager.html#dialog" title="http://projectserver.dataplus.ru/arcgis_js_api/sdk/jsapi/identitymanager.html#dialog"&gt;IdentityManager | API Reference | ArcGIS API for JavaScript&lt;/A&gt;&amp;nbsp;) .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any way to change (customize) the text "Please sign in to access the item ...." ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/320952_pastedImage_34.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 13 Feb 2017 16:27:24 GMT</pubDate>
    <dc:creator>LaurentDuruflé</dc:creator>
    <dc:date>2017-02-13T16:27:24Z</dc:date>
    <item>
      <title>esriSignInDialog</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/esrisignindialog/m-p/451543#M41717</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I am trying to customized the &lt;SPAN style="text-decoration: underline;"&gt;content of the&lt;/SPAN&gt; dialogbox used by the IdentityManager (according &lt;A class="link-titled" href="http://projectserver.dataplus.ru/arcgis_js_api/sdk/jsapi/identitymanager.html#dialog" title="http://projectserver.dataplus.ru/arcgis_js_api/sdk/jsapi/identitymanager.html#dialog"&gt;IdentityManager | API Reference | ArcGIS API for JavaScript&lt;/A&gt;&amp;nbsp;) .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any way to change (customize) the text "Please sign in to access the item ...." ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/320952_pastedImage_34.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Feb 2017 16:27:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/esrisignindialog/m-p/451543#M41717</guid>
      <dc:creator>LaurentDuruflé</dc:creator>
      <dc:date>2017-02-13T16:27:24Z</dc:date>
    </item>
    <item>
      <title>Re: esriSignInDialog</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/esrisignindialog/m-p/451544#M41718</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this:&lt;/P&gt;&lt;P&gt;Customize the text if you want:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="comment token"&gt;// identiy manager sign in content&lt;/SPAN&gt;
&amp;nbsp; esri&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;bundle&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;identity&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;info &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"Text Here. ${server} ${resource}"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt; &lt;SPAN class="comment token"&gt;// ${server} ${resource}" hidden via CSS&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Hide links:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="comment token"&gt;/* sign in dialog */&lt;/SPAN&gt;
&lt;SPAN class="selector token"&gt;.serverLink&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
&amp;nbsp; &lt;SPAN class="property token"&gt;display&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; none&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;
&lt;SPAN class="selector token"&gt;.resLink&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
&amp;nbsp; &lt;SPAN class="property token"&gt;display&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; none&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 20:08:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/esrisignindialog/m-p/451544#M41718</guid>
      <dc:creator>BrandonFlessner</dc:creator>
      <dc:date>2021-12-11T20:08:57Z</dc:date>
    </item>
    <item>
      <title>Re: esriSignInDialog</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/esrisignindialog/m-p/451545#M41719</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It looks like this CAN be changed. Refer to &lt;A href="https://developers.arcgis.com/javascript/3/jshelp/inside_bundle.html"&gt;this page&lt;/A&gt; in the documentation. Under the identity object, change the message for the info property. The default text for the info property is "Please sign in to access the item on ${server} ${resource}"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Feb 2017 16:43:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/esrisignindialog/m-p/451545#M41719</guid>
      <dc:creator>SteveCole</dc:creator>
      <dc:date>2017-02-13T16:43:30Z</dc:date>
    </item>
    <item>
      <title>Re: esriSignInDialog</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/esrisignindialog/m-p/451546#M41720</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Brandon,&lt;/P&gt;&lt;P&gt;I have just tried what you suggested. It works perfectly !&lt;/P&gt;&lt;P&gt;Many thanks for the solution .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Feb 2017 16:52:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/esrisignindialog/m-p/451546#M41720</guid>
      <dc:creator>LaurentDuruflé</dc:creator>
      <dc:date>2017-02-13T16:52:05Z</dc:date>
    </item>
    <item>
      <title>Re: esriSignInDialog</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/esrisignindialog/m-p/451547#M41721</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Steve,&lt;/P&gt;&lt;P&gt;I have dig into this link: very very useful.&lt;/P&gt;&lt;P&gt;Thanks again.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Feb 2017 16:54:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/esrisignindialog/m-p/451547#M41721</guid>
      <dc:creator>LaurentDuruflé</dc:creator>
      <dc:date>2017-02-13T16:54:37Z</dc:date>
    </item>
    <item>
      <title>Re: esriSignInDialog</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/esrisignindialog/m-p/451548#M41722</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi, where to edit this code with arcgis server side.thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Nov 2018 19:52:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/esrisignindialog/m-p/451548#M41722</guid>
      <dc:creator>MuglaCbs1</dc:creator>
      <dc:date>2018-11-20T19:52:21Z</dc:date>
    </item>
    <item>
      <title>Re: esriSignInDialog</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/esrisignindialog/m-p/451549#M41723</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This&amp;nbsp;solution works by adding the code to&amp;nbsp;your JavaScript and CSS, not by changing anything server side.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Nov 2018 12:06:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/esrisignindialog/m-p/451549#M41723</guid>
      <dc:creator>BrandonFlessner</dc:creator>
      <dc:date>2018-11-26T12:06:38Z</dc:date>
    </item>
    <item>
      <title>Re: esriSignInDialog</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/esrisignindialog/m-p/451550#M41724</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi , I have similar problem in my WAB application. so please can you tell which .js file of web app builder to put it in?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 May 2020 12:31:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/esrisignindialog/m-p/451550#M41724</guid>
      <dc:creator>Shalineemishra</dc:creator>
      <dc:date>2020-05-22T12:31:07Z</dc:date>
    </item>
  </channel>
</rss>

