<?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: Call custom Javascript function in a table column in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Call-custom-Javascript-function-in-a-table-column/m-p/302038#M8896</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/6971"&gt;@Eric_Zhang&lt;/a&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your prompt reply.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Am I right in thinking that, I can call any Javascript function instead of the alert message you have shown in the example code below?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;reports.on('dataSelected', function(event)
{
var data = event.detail;  
console.log(JSON.stringify(data, null, ' '));
alert(JSON.stringify(data, null, ' '));
		 
})
}&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;So, instead of&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;alert(JSON.stringify(data, null, ' '));&amp;nbsp;&amp;nbsp;&lt;/PRE&gt;&lt;P&gt;I can call&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;var message_data = {'uniquename':&amp;lt;&amp;lt;field from JSON data&amp;gt;&amp;gt;,'entitytype':&amp;lt;&amp;lt;field from JSON data&amp;gt;&amp;gt;,'clientX':event.clientX,'clientY':event.clientY};window.parent.postMessage(message_data,'http://localhost');&lt;/STRONG&gt;&lt;/EM&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is that correct?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Note that, we will need clientX and clientY position to be able to show the message/alert window on client side and call a postMessage function from the parent window.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Hitesh&lt;/P&gt;</description>
    <pubDate>Mon, 13 Nov 2017 13:14:35 GMT</pubDate>
    <dc:creator>hiteshpatel1983</dc:creator>
    <dc:date>2017-11-13T13:14:35Z</dc:date>
    <item>
      <title>Call custom Javascript function in a table column</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Call-custom-Javascript-function-in-a-table-column/m-p/300856#M8851</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We have a scenario where we embed our Power BI report in a .Net application and what we would like to do is add column in a table in the report that will include a dynamic Javascript function that includes a few fields from the table (like Customer name, Customer type) as a parameter.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So. for e.g. the content of the table could look like something like this,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;CustName (Visible Column) |&amp;nbsp; CustType (Hidden column) |&amp;nbsp; &amp;nbsp;Sales (Visible column) |&amp;nbsp; &amp;nbsp;JsFunc (Column showing icon with Javascript)&lt;/P&gt;&lt;P&gt;-------------------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;John&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; Account&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; $4000&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; ≡&lt;/STRONG&gt; &lt;EM&gt;{javascript**}&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Ben&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; HCP&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;$500&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; ≡&lt;/STRONG&gt; &lt;EM&gt;{javascript**}&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;javascript** will be as follows -&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;javascript&amp;amp;colon;var message_data = {'uniquename':[CustName],'entitytype':[CustType],'clientX':event.clientX,'clientY':event.clientY};window.parent.postMessage(message_data,'http://localhost');&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;[CustName] and [CustType] are the values we want to use from the respective fields.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, we wouldnt want to show the Javascript in the table but just the "≡" icon in the last column. However, when you a user clicks on the "≡" (left click preferably), we would like to execute a javascript function that is defined in our web application.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is anyone aware of ways to do this in Power BI report (that are embedded in an another application)?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Hitesh&lt;/P&gt;</description>
      <pubDate>Fri, 10 Nov 2017 12:07:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Call-custom-Javascript-function-in-a-table-column/m-p/300856#M8851</guid>
      <dc:creator>hiteshpatel1983</dc:creator>
      <dc:date>2017-11-10T12:07:27Z</dc:date>
    </item>
    <item>
      <title>Re: Call custom Javascript function in a table column</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Call-custom-Javascript-function-in-a-table-column/m-p/301717#M8874</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/17580"&gt;@hiteshpatel1983&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We have a scenario where we embed our Power BI report in a .Net application and what we would like to do is add column in a table in the report that will include a dynamic Javascript function that includes a few fields from the table (like Customer name, Customer type) as a parameter.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So. for e.g. the content of the table could look like something like this,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;CustName (Visible Column) |&amp;nbsp; CustType (Hidden column) |&amp;nbsp; &amp;nbsp;Sales (Visible column) |&amp;nbsp; &amp;nbsp;JsFunc (Column showing icon with Javascript)&lt;/P&gt;
&lt;P&gt;-------------------------------------------------------------------------------------------------------------------------------&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;John&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; Account&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; $4000&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; ≡&lt;/STRONG&gt; &lt;EM&gt;{javascript**}&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Ben&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; HCP&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;$500&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; ≡&lt;/STRONG&gt; &lt;EM&gt;{javascript**}&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;javascript** will be as follows -&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;javascript&amp;amp;colon;var message_data = {'uniquename':[CustName],'entitytype':[CustType],'clientX':event.clientX,'clientY':event.clientY};window.parent.postMessage(message_data,'http://localhost');&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;[CustName] and [CustType] are the values we want to use from the respective fields.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So, we wouldnt want to show the Javascript in the table but just the "≡" icon in the last column. However, when you a user clicks on the "≡" (left click preferably), we would like to execute a javascript function that is defined in our web application.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is anyone aware of ways to do this in Power BI report (that are embedded in an another application)?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Hitesh&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/17580"&gt;@hiteshpatel1983&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;It is not supported.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, more or less you could achieve your requirement by using &lt;A href="https://github.com/Microsoft/PowerBI-JavaScript" target="_self"&gt;Power BI Javascript APIs&lt;/A&gt;. You could capture the event "dataSelected" and run Javascript accordingly, see &lt;A href="https://github.com/Microsoft/PowerBI-JavaScript/wiki/Handling-Events" target="_self"&gt;more events&lt;/A&gt;.&lt;/P&gt;
&lt;PRE&gt;reports.on('dataSelected', function(event)
{
var data = event.detail;  
console.log(JSON.stringify(data, null, ' '));
alert(JSON.stringify(data, null, ' '));
		 
})
}&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="dataselected.gif" style="width: 600px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/69171i895E99A3CA4A643B/image-size/large?v=v2&amp;amp;px=999" role="button" title="dataselected.gif" alt="dataselected.gif" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Nov 2017 06:57:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Call-custom-Javascript-function-in-a-table-column/m-p/301717#M8874</guid>
      <dc:creator>Eric_Zhang</dc:creator>
      <dc:date>2017-11-13T06:57:40Z</dc:date>
    </item>
    <item>
      <title>Re: Call custom Javascript function in a table column</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Call-custom-Javascript-function-in-a-table-column/m-p/302038#M8896</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/6971"&gt;@Eric_Zhang&lt;/a&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your prompt reply.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Am I right in thinking that, I can call any Javascript function instead of the alert message you have shown in the example code below?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;reports.on('dataSelected', function(event)
{
var data = event.detail;  
console.log(JSON.stringify(data, null, ' '));
alert(JSON.stringify(data, null, ' '));
		 
})
}&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;So, instead of&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;alert(JSON.stringify(data, null, ' '));&amp;nbsp;&amp;nbsp;&lt;/PRE&gt;&lt;P&gt;I can call&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;var message_data = {'uniquename':&amp;lt;&amp;lt;field from JSON data&amp;gt;&amp;gt;,'entitytype':&amp;lt;&amp;lt;field from JSON data&amp;gt;&amp;gt;,'clientX':event.clientX,'clientY':event.clientY};window.parent.postMessage(message_data,'http://localhost');&lt;/STRONG&gt;&lt;/EM&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is that correct?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Note that, we will need clientX and clientY position to be able to show the message/alert window on client side and call a postMessage function from the parent window.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Hitesh&lt;/P&gt;</description>
      <pubDate>Mon, 13 Nov 2017 13:14:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Call-custom-Javascript-function-in-a-table-column/m-p/302038#M8896</guid>
      <dc:creator>hiteshpatel1983</dc:creator>
      <dc:date>2017-11-13T13:14:35Z</dc:date>
    </item>
    <item>
      <title>Re: Call custom Javascript function in a table column</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Call-custom-Javascript-function-in-a-table-column/m-p/306946#M9028</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/6971"&gt;@Eric_Zhang&lt;/a&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We have actually&amp;nbsp;tried to utilise the "DataSelected" event capture to trigger a script that we will define to show a menu from the web app using the example you shared with me earlier (thanks for that!)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, we want to do is show the alert window at the point where user has clicked on the report (using clientX and clientY values or something similar?).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Are you familiar with any such properties we can apply/utilise to show the alert window at a position where user clicked on?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;BR /&gt;Hitesh&lt;/P&gt;</description>
      <pubDate>Mon, 20 Nov 2017 14:47:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Call-custom-Javascript-function-in-a-table-column/m-p/306946#M9028</guid>
      <dc:creator>hiteshpatel1983</dc:creator>
      <dc:date>2017-11-20T14:47:12Z</dc:date>
    </item>
    <item>
      <title>Re: Call custom Javascript function in a table column</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Call-custom-Javascript-function-in-a-table-column/m-p/307501#M9053</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/17580"&gt;@hiteshpatel1983&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/6971"&gt;@Eric_Zhang&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We have actually&amp;nbsp;tried to utilise the "DataSelected" event capture to trigger a script that we will define to show a menu from the web app using the example you shared with me earlier (thanks for that!)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, we want to do is show the alert window at the point where user has clicked on the report (using clientX and clientY values or something similar?).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Are you familiar with any such properties we can apply/utilise to show the alert window at a position where user clicked on?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;BR /&gt;Hitesh&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/17580"&gt;@hiteshpatel1983&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;That is actually beyond the scope of Power BI, just see below links. For further questions, I'd suggest you ask/search in stackoverflow site.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://stackoverflow.com/questions/2601097/how-to-get-the-mouse-position-without-events-without-moving-the-mouse" target="_self"&gt;How to get the mouse position without events (without moving the mouse)?&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://stackoverflow.com/questions/18978713/how-to-customize-the-position-of-an-alert-box" target="_self"&gt;How to customize the position of an alert box&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Nov 2017 07:29:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Call-custom-Javascript-function-in-a-table-column/m-p/307501#M9053</guid>
      <dc:creator>Eric_Zhang</dc:creator>
      <dc:date>2017-11-21T07:29:37Z</dc:date>
    </item>
    <item>
      <title>Re: Call custom Javascript function in a table column</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Call-custom-Javascript-function-in-a-table-column/m-p/307910#M9070</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/6971"&gt;@Eric_Zhang&lt;/a&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I will investigate this further in those areas.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Hitesh&lt;/P&gt;</description>
      <pubDate>Tue, 21 Nov 2017 14:35:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Call-custom-Javascript-function-in-a-table-column/m-p/307910#M9070</guid>
      <dc:creator>hiteshpatel1983</dc:creator>
      <dc:date>2017-11-21T14:35:28Z</dc:date>
    </item>
  </channel>
</rss>

