<?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: Multiple selection in custom visual in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Multiple-selection-in-custom-visual/m-p/355227#M10579</link>
    <description>&lt;P&gt;That code snippet looks good.&lt;/P&gt;
&lt;P&gt;Can you share the whole source code for debugging?&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 12.0pt;"&gt;&lt;SPAN style="font-weight: bold;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt; color: #333333;"&gt;Ignat Vilesov,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt; color: #333333;"&gt;Software Engineer&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt; color: #333333;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt; color: #333333;"&gt;Microsoft Power BI Custom Visuals&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;&lt;A href="mailto:pbicvsupport@microsoft.com" target="_blank"&gt;&lt;SPAN&gt;pbicvsupport@microsoft.com&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 09 Feb 2018 07:32:03 GMT</pubDate>
    <dc:creator>v-viig</dc:creator>
    <dc:date>2018-02-09T07:32:03Z</dc:date>
    <item>
      <title>Multiple selection in custom visual</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Multiple-selection-in-custom-visual/m-p/352325#M10487</link>
      <description>&lt;P&gt;Hi everyone.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I wanted to know, how to do multple selection using pressed CTRL button and mouse click, instead of mouse click. I&amp;nbsp;set&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;U&gt;this.selectionManager.select(d.identity, true),&lt;/U&gt; and it selects multiple data, but just by mouse click. How to alter it for identification of CTRL button pressed?&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 06 Feb 2018 09:13:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Multiple-selection-in-custom-visual/m-p/352325#M10487</guid>
      <dc:creator>ysapiyev</dc:creator>
      <dc:date>2018-02-06T09:13:35Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple selection in custom visual</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Multiple-selection-in-custom-visual/m-p/354344#M10536</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/51907"&gt;@ysapiyev&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You should use something like this (&lt;A href="https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent/ctrlKey" target="_blank"&gt;event documentation&lt;/A&gt;&lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;// event is a mouse event

const isCtrlKeyPressed = event.ctrlKey;

this.selectionManager.select(d.identity, isCtrlKeyPressed);

&lt;/PRE&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt; color: #333333;"&gt;Ignat Vilesov,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt; color: #333333;"&gt;Software Engineer&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt; color: #333333;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt; color: #333333;"&gt;Microsoft Power BI Custom Visuals&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;&lt;A href="mailto:pbicvsupport@microsoft.com" target="_blank"&gt;&lt;SPAN&gt;pbicvsupport@microsoft.com&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Feb 2018 07:08:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Multiple-selection-in-custom-visual/m-p/354344#M10536</guid>
      <dc:creator>v-viig</dc:creator>
      <dc:date>2018-02-08T07:08:09Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple selection in custom visual</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Multiple-selection-in-custom-visual/m-p/354452#M10546</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/17823"&gt;@v-viig&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So ,as I understood, it should look like this, right?&lt;/P&gt;&lt;PRE&gt;var event =  &amp;lt;Event&amp;gt;d3.event;
const isCtrlKeyPressed =event.ctrlKey;

this.selectionManager.select(d.identity, isCtrlKeyPressed);&lt;/PRE&gt;&lt;P&gt;However, it shows me that&amp;nbsp;there is no property ctrlKey in event. I googled, and it gives me similar solution as yours. What can be wrong?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Yerkhan&lt;/P&gt;</description>
      <pubDate>Thu, 08 Feb 2018 09:03:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Multiple-selection-in-custom-visual/m-p/354452#M10546</guid>
      <dc:creator>ysapiyev</dc:creator>
      <dc:date>2018-02-08T09:03:10Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple selection in custom visual</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Multiple-selection-in-custom-visual/m-p/355172#M10575</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/17823"&gt;@v-viig&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could you have a look at my problem?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Yerkhan&lt;/P&gt;</description>
      <pubDate>Fri, 09 Feb 2018 06:31:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Multiple-selection-in-custom-visual/m-p/355172#M10575</guid>
      <dc:creator>ysapiyev</dc:creator>
      <dc:date>2018-02-09T06:31:40Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple selection in custom visual</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Multiple-selection-in-custom-visual/m-p/355227#M10579</link>
      <description>&lt;P&gt;That code snippet looks good.&lt;/P&gt;
&lt;P&gt;Can you share the whole source code for debugging?&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 12.0pt;"&gt;&lt;SPAN style="font-weight: bold;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt; color: #333333;"&gt;Ignat Vilesov,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt; color: #333333;"&gt;Software Engineer&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt; color: #333333;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt; color: #333333;"&gt;Microsoft Power BI Custom Visuals&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;&lt;A href="mailto:pbicvsupport@microsoft.com" target="_blank"&gt;&lt;SPAN&gt;pbicvsupport@microsoft.com&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Feb 2018 07:32:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Multiple-selection-in-custom-visual/m-p/355227#M10579</guid>
      <dc:creator>v-viig</dc:creator>
      <dc:date>2018-02-09T07:32:03Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple selection in custom visual</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Multiple-selection-in-custom-visual/m-p/355231#M10580</link>
      <description>&lt;P&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/17823"&gt;@v-viig&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yes, should I send you visual.ts? And please share your email.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Yerkhan&lt;/P&gt;</description>
      <pubDate>Fri, 09 Feb 2018 07:33:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Multiple-selection-in-custom-visual/m-p/355231#M10580</guid>
      <dc:creator>ysapiyev</dc:creator>
      <dc:date>2018-02-09T07:33:53Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple selection in custom visual</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Multiple-selection-in-custom-visual/m-p/355241#M10584</link>
      <description>&lt;P&gt;It'd be better to share all of files.&lt;/P&gt;
&lt;P&gt;You can send all of them to&amp;nbsp;&lt;SPAN&gt;&lt;A title="" href="mailto:pbicvsupport@microsoft.com" target="_blank" rel="nofollow noopener noreferrer"&gt;pbicvsupport@microsoft.com&lt;/A&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt; color: #333333;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt; color: #333333;"&gt;Ignat Vilesov,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt; color: #333333;"&gt;Software Engineer&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt; color: #333333;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt; color: #333333;"&gt;Microsoft Power BI Custom Visuals&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;&lt;A href="mailto:pbicvsupport@microsoft.com" target="_blank"&gt;&lt;SPAN&gt;pbicvsupport@microsoft.com&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Feb 2018 07:41:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Multiple-selection-in-custom-visual/m-p/355241#M10584</guid>
      <dc:creator>v-viig</dc:creator>
      <dc:date>2018-02-09T07:41:24Z</dc:date>
    </item>
  </channel>
</rss>

