<?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: Angular listen to calcite events in Calcite Design System Questions</title>
    <link>https://community.esri.com/t5/calcite-design-system-questions/angular-listen-to-calcite-events/m-p/1261067#M335</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/574219"&gt;@KittyHurley&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for the fast reply. Now I can see where I went wrong. The documentation for the&amp;nbsp;&lt;A title="calciteInputText" href="https://developers.arcgis.com/calcite-design-system/components/input-text/" target="_self"&gt;calciteInputText&lt;/A&gt;&amp;nbsp;shows the calciteInput element instead of the calciteInputText element. And I copied from the element from the example.&lt;/P&gt;&lt;P&gt;After changing to the calciteInputText element the event fires as expected.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;calcite-input-text placeholder="Filter users" icon="filter" (calciteInputTextInput)="TextInput($event)"
        clearable="true"&amp;gt;&amp;lt;/calcite-input-text&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 23 Feb 2023 19:04:58 GMT</pubDate>
    <dc:creator>Robert_van_Gilst</dc:creator>
    <dc:date>2023-02-23T19:04:58Z</dc:date>
    <item>
      <title>Angular listen to calcite events</title>
      <link>https://community.esri.com/t5/calcite-design-system-questions/angular-listen-to-calcite-events/m-p/1260853#M333</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I want to react to&amp;nbsp;&lt;A href="https://developers.arcgis.com/calcite-design-system/components/input-text/#api-reference-events-calciteInputTextInput" target="_blank"&gt;calciteInputTextInput&lt;/A&gt;&amp;nbsp;event in my Angular application. Tried doing it like this.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;calcite-input placeholder="Filter brugere" icon="filter"
    (calciteInputTextInput)="TextInput($event)"&amp;gt;&amp;lt;/calcite-input&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;But my application does not react to it. I have to use the default html element events to react.&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;&amp;lt;calcite-input placeholder="Filter users" icon="filter"
    (keyup)="TextInput($event)"&amp;gt;&amp;lt;/calcite-input&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;Am I doing something worng?&lt;/P&gt;</description>
      <pubDate>Thu, 23 Feb 2023 13:27:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/calcite-design-system-questions/angular-listen-to-calcite-events/m-p/1260853#M333</guid>
      <dc:creator>Robert_van_Gilst</dc:creator>
      <dc:date>2023-02-23T13:27:03Z</dc:date>
    </item>
    <item>
      <title>Re: Angular listen to calcite events</title>
      <link>https://community.esri.com/t5/calcite-design-system-questions/angular-listen-to-calcite-events/m-p/1261018#M334</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/424647"&gt;@Robert_van_Gilst&lt;/a&gt;, It looks like you are using the&amp;nbsp;&lt;EM&gt;calciteInputTextInput&lt;/EM&gt; event, but the Input component uses the&amp;nbsp;&lt;A href="https://developers.arcgis.com/calcite-design-system/components/input/#api-reference-events-calciteInputInput" target="_blank" rel="noopener"&gt;&lt;EM&gt;calciteInputInput event&lt;/EM&gt;&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;The &lt;A href="https://developers.arcgis.com/calcite-design-system/components/input-text/#api-reference-events-calciteInputTextInput" target="_blank" rel="noopener"&gt;calciteInputTextInput event&lt;/A&gt;&amp;nbsp;is reserved for the Input Text component, so could have created some conflicts if working with both components together.&lt;/P&gt;</description>
      <pubDate>Thu, 23 Feb 2023 17:46:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/calcite-design-system-questions/angular-listen-to-calcite-events/m-p/1261018#M334</guid>
      <dc:creator>KittyHurley</dc:creator>
      <dc:date>2023-02-23T17:46:33Z</dc:date>
    </item>
    <item>
      <title>Re: Angular listen to calcite events</title>
      <link>https://community.esri.com/t5/calcite-design-system-questions/angular-listen-to-calcite-events/m-p/1261067#M335</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/574219"&gt;@KittyHurley&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for the fast reply. Now I can see where I went wrong. The documentation for the&amp;nbsp;&lt;A title="calciteInputText" href="https://developers.arcgis.com/calcite-design-system/components/input-text/" target="_self"&gt;calciteInputText&lt;/A&gt;&amp;nbsp;shows the calciteInput element instead of the calciteInputText element. And I copied from the element from the example.&lt;/P&gt;&lt;P&gt;After changing to the calciteInputText element the event fires as expected.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;calcite-input-text placeholder="Filter users" icon="filter" (calciteInputTextInput)="TextInput($event)"
        clearable="true"&amp;gt;&amp;lt;/calcite-input-text&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Feb 2023 19:04:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/calcite-design-system-questions/angular-listen-to-calcite-events/m-p/1261067#M335</guid>
      <dc:creator>Robert_van_Gilst</dc:creator>
      <dc:date>2023-02-23T19:04:58Z</dc:date>
    </item>
    <item>
      <title>Re: Angular listen to calcite events</title>
      <link>https://community.esri.com/t5/calcite-design-system-questions/angular-listen-to-calcite-events/m-p/1261165#M336</link>
      <description>&lt;P&gt;Thanks much for recognizing and relaying on,&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/424647"&gt;@Robert_van_Gilst&lt;/a&gt;!&amp;nbsp;&lt;/P&gt;&lt;P&gt;We've got a fix in to showcase the Calcite Input Text component properly in the sample, which should mitigate the documentation discrepancy in next Wednesday's documentation release.&lt;/P&gt;</description>
      <pubDate>Thu, 23 Feb 2023 22:43:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/calcite-design-system-questions/angular-listen-to-calcite-events/m-p/1261165#M336</guid>
      <dc:creator>KittyHurley</dc:creator>
      <dc:date>2023-02-23T22:43:14Z</dc:date>
    </item>
  </channel>
</rss>

