<?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 Should F1 display help on runtime qml types in ArcGIS AppStudio Questions</title>
    <link>https://community.esri.com/t5/arcgis-appstudio-questions/should-f1-display-help-on-runtime-qml-types/m-p/1256144#M4427</link>
    <description>&lt;P&gt;Should F1 display help on Runtime/Maps SDK QML types.&lt;/P&gt;&lt;P&gt;Is there a separate install for the help?&lt;/P&gt;&lt;P&gt;Is there a Preferences/Options setting that needs to be turned on?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 08 Feb 2023 16:00:48 GMT</pubDate>
    <dc:creator>rob_hewy</dc:creator>
    <dc:date>2023-02-08T16:00:48Z</dc:date>
    <item>
      <title>Should F1 display help on runtime qml types</title>
      <link>https://community.esri.com/t5/arcgis-appstudio-questions/should-f1-display-help-on-runtime-qml-types/m-p/1256144#M4427</link>
      <description>&lt;P&gt;Should F1 display help on Runtime/Maps SDK QML types.&lt;/P&gt;&lt;P&gt;Is there a separate install for the help?&lt;/P&gt;&lt;P&gt;Is there a Preferences/Options setting that needs to be turned on?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Feb 2023 16:00:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-appstudio-questions/should-f1-display-help-on-runtime-qml-types/m-p/1256144#M4427</guid>
      <dc:creator>rob_hewy</dc:creator>
      <dc:date>2023-02-08T16:00:48Z</dc:date>
    </item>
    <item>
      <title>Re: Should F1 display help on runtime qml types</title>
      <link>https://community.esri.com/t5/arcgis-appstudio-questions/should-f1-display-help-on-runtime-qml-types/m-p/1258183#M4429</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/444325"&gt;@rob_hewy&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;Thank you for reaching out to us. The developers are investigating in this case. We appreciate your patience.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Feb 2023 20:16:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-appstudio-questions/should-f1-display-help-on-runtime-qml-types/m-p/1258183#M4429</guid>
      <dc:creator>AdityaAllamraju1</dc:creator>
      <dc:date>2023-02-14T20:16:17Z</dc:date>
    </item>
    <item>
      <title>Re: Should F1 display help on runtime qml types</title>
      <link>https://community.esri.com/t5/arcgis-appstudio-questions/should-f1-display-help-on-runtime-qml-types/m-p/1260344#M4434</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/444325"&gt;@rob_hewy&lt;/a&gt;&amp;nbsp;, the help is accessible if you were to search via Help Contents.&lt;/P&gt;&lt;P&gt;If you wish the F1 context-help key to function a patch will be required. Fortunately, you can create the patch yourself using the following AppStudio App. After running it, you will need to restart Qt Creator to see the changes.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;import QtQuick 2.15
import QtQuick.Controls 2.15
import ArcGIS.AppFramework 1.0
import ArcGIS.AppFramework.Sql 1.0
App {
    id: app
    width: 800
    height: 600
    Button {
        anchors.centerIn: parent
        text: qsTr("Patch")
        property SqlDatabase db: SqlDatabase { }
        onClicked: {
            patchFile("~/Applications/ArcGIS/AppStudio/doc/AppFramework.qch", 'org.qt-project.qtappframework.5156');
            patchFile("~/Applications/ArcGIS/AppStudio/doc/ArcGISQtQML.qch", 'org.qt-project.qtarcgisqtqml.5156');
            patchFile("~/Applications/ArcGIS/AppStudio/doc/ArcGISQtToolkit.qch", 'org.qt-project.qtarcgisqttoolkit.5156');
            text = qsTr("Patched");
            enabled = false;
        }
        function patchFile(fileName, namespace) {
            db.databaseName = AppFramework.resolvedPath(fileName);
            db.open();
            db.query("UPDATE NamespaceTable SET Name = :namespace", { namespace });
            db.close();
        }
    }
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am interested if this resolves this issue for you.&lt;/P&gt;&lt;P&gt;Stephen&lt;/P&gt;</description>
      <pubDate>Wed, 22 Feb 2023 03:29:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-appstudio-questions/should-f1-display-help-on-runtime-qml-types/m-p/1260344#M4434</guid>
      <dc:creator>StephenQuan1</dc:creator>
      <dc:date>2023-02-22T03:29:03Z</dc:date>
    </item>
    <item>
      <title>Re: Should F1 display help on runtime qml types</title>
      <link>https://community.esri.com/t5/arcgis-appstudio-questions/should-f1-display-help-on-runtime-qml-types/m-p/1260365#M4435</link>
      <description>&lt;P&gt;Totally worked!&lt;/P&gt;&lt;P&gt;The path is sensitive to where you installed the software.&lt;/P&gt;&lt;P&gt;The above works for the default settings which I did &lt;STRONG&gt;not&lt;/STRONG&gt; use when I first installed.&lt;/P&gt;&lt;P&gt;A quick reinstall with the defaults, run the app, reopen QT Creator and all good &lt;span class="lia-unicode-emoji" title=":beaming_face_with_smiling_eyes:"&gt;😁&lt;/span&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Very surprised that ~ resolved to %USERPROFILE% on windows ... good job&amp;nbsp;AppFramework and&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/288379"&gt;@StephenQuan1&lt;/a&gt;.&lt;/P&gt;&lt;P&gt;Thank YOU!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Feb 2023 07:00:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-appstudio-questions/should-f1-display-help-on-runtime-qml-types/m-p/1260365#M4435</guid>
      <dc:creator>rob_hewy</dc:creator>
      <dc:date>2023-02-22T07:00:30Z</dc:date>
    </item>
  </channel>
</rss>

