<?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: Jquery function overriding not working in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Jquery-function-overriding-not-working/m-p/551229#M38106</link>
    <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/234298"&gt;@ankitarath2011g&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sharing new code as per your requirement. Can you please try this code?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;XML.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;form script="A1.js,A2.js"&amp;gt;
  &amp;lt;label&amp;gt;JS Example&amp;lt;/label&amp;gt;
  &amp;lt;fieldset submitButton="false" autoRun="false"&amp;gt;
    &amp;lt;input type="time" token="my_time_token" searchWhenChanged="true"&amp;gt;
      &amp;lt;label&amp;gt;Time Selection&amp;lt;/label&amp;gt;
      &amp;lt;default&amp;gt;
        &amp;lt;earliest&amp;gt;-60m&amp;lt;/earliest&amp;gt;
        &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
      &amp;lt;/default&amp;gt;
    &amp;lt;/input&amp;gt;
   &amp;lt;/fieldset&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;html&amp;gt;
        &amp;lt;div class="spanclass"&amp;gt;&amp;lt;/div&amp;gt;
      &amp;lt;/html&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
&amp;lt;/form&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;A1.js&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;require([
    'underscore',
    'jquery',
    'splunkjs/mvc',
    'splunkjs/mvc/simplexml/ready!'
], function(_, $, mvc) {
    console.log("In A1");
    $(".spanclass").prepend("&amp;lt;a class='btn a-btn' &amp;gt;Click this&amp;lt;/a&amp;gt;");
    var default_token_model = mvc.Components.get("default");
    var submitted_tokens = mvc.Components.get("submitted");

    $(document).on('click', ".a-btn", function() {
        console.log("This is from A1. Setting up time token with all time.");
        default_token_model.set("form.my_time_token.earliest", "0");
        default_token_model.set("form.my_time_token.latest", "now");
        submitted_tokens.set(default_token_model.toJSON());
    });
});&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;A2.js&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;require([
    'underscore',
    'jquery',
    'splunkjs/mvc',
    'splunkjs/mvc/simplexml/ready!'
], function(_, $, mvc) {
    console.log("In A2");
    var default_token_model = mvc.Components.get("default");
    var submitted_tokens = mvc.Components.get("submitted");
    $(document).off('click', ".a-btn").on('click', ".a-btn", function() {
        console.log("This is from A2. Setting up time token with last 24 hrs.");
        default_token_model.set("form.my_time_token.earliest", "-24h");
        default_token_model.set("form.my_time_token.latest", "now");
        submitted_tokens.set(default_token_model.toJSON());
    });
});&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;BR /&gt;Kamlesh Vaghela&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this reply helps you, an upvote would be appreciated.&lt;/P&gt;</description>
    <pubDate>Tue, 11 May 2021 12:16:36 GMT</pubDate>
    <dc:creator>kamlesh_vaghela</dc:creator>
    <dc:date>2021-05-11T12:16:36Z</dc:date>
    <item>
      <title>Jquery function overriding not working</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Jquery-function-overriding-not-working/m-p/551203#M38091</link>
      <description>&lt;P&gt;I have added 2 JS file in my dashboard XML. Want to override a on click(button) function defined in JS-1 in JS-2 and want the dashboard to call the overridden function. The first JS is common one used by many apps, so can not change that one.&amp;nbsp; I am basically setting the time picker token in both functions with different token value.&lt;/P&gt;&lt;P&gt;On clicking it is calling&amp;nbsp; both functions as it is printing both "In JS1" and "In JS2". But timepicker token is set to the first JS value. Have tried the following to override.&lt;BR /&gt;JS1&lt;/P&gt;&lt;P&gt;In JS1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;$(".a-btn").click(function () {
console.log("In def JS 1");
// Code for setting time picker token to -30m
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;In JS2&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var tmp_fun = $.fn.a-btn;  // Have tried without this as well
$(".a-btn").click(function () {
console.log("In def JS 2");
// Code for setting the time picker token to -60m
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;Please suggest&lt;/P&gt;</description>
      <pubDate>Tue, 11 May 2021 10:07:00 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Jquery-function-overriding-not-working/m-p/551203#M38091</guid>
      <dc:creator>ankitarath2011g</dc:creator>
      <dc:date>2021-05-11T10:07:00Z</dc:date>
    </item>
    <item>
      <title>Re: Jquery function overriding not working</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Jquery-function-overriding-not-working/m-p/551207#M38094</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/234298"&gt;@ankitarath2011g&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you please try below JS code in JS2?&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;    $(document).off('click', ".a-btn").on('click', ".a-btn", function() {
        console.log("In def JS 2");
    });&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this reply helps you, an upvote would be appreciated.&lt;/P&gt;&lt;P&gt;Thanks&lt;BR /&gt;Kamlesh Vaghela&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 May 2021 09:48:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Jquery-function-overriding-not-working/m-p/551207#M38094</guid>
      <dc:creator>kamlesh_vaghela</dc:creator>
      <dc:date>2021-05-11T09:48:03Z</dc:date>
    </item>
    <item>
      <title>Re: Jquery function overriding not working</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Jquery-function-overriding-not-working/m-p/551209#M38095</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/127939"&gt;@kamlesh_vaghela&lt;/a&gt;&amp;nbsp;&amp;nbsp;Thanks Kamlesh for the reply. Tried this but it is not working.&amp;nbsp; Have updated the main post/question. Can you please read again and suggest&lt;/P&gt;</description>
      <pubDate>Tue, 11 May 2021 10:20:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Jquery-function-overriding-not-working/m-p/551209#M38095</guid>
      <dc:creator>ankitarath2011g</dc:creator>
      <dc:date>2021-05-11T10:20:32Z</dc:date>
    </item>
    <item>
      <title>Re: Jquery function overriding not working</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Jquery-function-overriding-not-working/m-p/551215#M38097</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/234298"&gt;@ankitarath2011g&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is it possible to share sample XML of your code ?? Just replace searches and Confidential values with dummy one.&lt;/P&gt;</description>
      <pubDate>Tue, 11 May 2021 10:36:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Jquery-function-overriding-not-working/m-p/551215#M38097</guid>
      <dc:creator>kamlesh_vaghela</dc:creator>
      <dc:date>2021-05-11T10:36:37Z</dc:date>
    </item>
    <item>
      <title>Re: Jquery function overriding not working</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Jquery-function-overriding-not-working/m-p/551220#M38102</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/127939"&gt;@kamlesh_vaghela&lt;/a&gt;&amp;nbsp;button is getting added in first JS itself. Not in XML&lt;/P&gt;&lt;LI-CODE lang="markup"&gt; $(".spanclass").prepend("&amp;lt;a class='btn a-btn' &amp;gt;Click this&amp;lt;/a&amp;gt;");&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 11 May 2021 11:02:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Jquery-function-overriding-not-working/m-p/551220#M38102</guid>
      <dc:creator>ankitarath2011g</dc:creator>
      <dc:date>2021-05-11T11:02:57Z</dc:date>
    </item>
    <item>
      <title>Re: Jquery function overriding not working</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Jquery-function-overriding-not-working/m-p/551224#M38104</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/234298"&gt;@ankitarath2011g&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have tried this also. It is working. Please check my sample code and try in your local instance.&lt;/P&gt;&lt;P&gt;XML.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;form script="A1.js,A2.js"&amp;gt;
  &amp;lt;label&amp;gt;JS Example&amp;lt;/label&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;html&amp;gt;
        &amp;lt;div class="spanclass"&amp;gt;&amp;lt;/div&amp;gt;
      &amp;lt;/html&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
&amp;lt;/form&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;A1.js&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;require([
    'underscore',
    'jquery',
    'splunkjs/mvc',
    'splunkjs/mvc/simplexml/ready!'
], function(_, $, mvc) {
    console.log("In A1");
    $(".spanclass").prepend("&amp;lt;a class='btn a-btn' &amp;gt;Click this&amp;lt;/a&amp;gt;");

    $(document).on('click', ".a-btn", function() {
        console.log("This is from A1");
    });
});&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;A2.js&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;require([
    'underscore',
    'jquery',
    'splunkjs/mvc',
    'splunkjs/mvc/simplexml/ready!'
], function(_, $, mvc) {

    console.log("In A2");
    $(document).off('click', ".a-btn").on('click', ".a-btn", function() {
        console.log("This is from A2");
    });
});&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Tip: &amp;nbsp;Bump js version using&amp;nbsp;&lt;A href="https://localhost:8000/en-US/_bump" target="_blank"&gt;https://localhost:8000/en-US/_bump&lt;/A&gt;&amp;nbsp;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;BR /&gt;Kamlesh Vaghela&lt;/P&gt;&lt;P&gt;If this reply helps you, an upvote would be appreciated.&lt;/P&gt;</description>
      <pubDate>Tue, 11 May 2021 11:14:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Jquery-function-overriding-not-working/m-p/551224#M38104</guid>
      <dc:creator>kamlesh_vaghela</dc:creator>
      <dc:date>2021-05-11T11:14:12Z</dc:date>
    </item>
    <item>
      <title>Re: Jquery function overriding not working</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Jquery-function-overriding-not-working/m-p/551227#M38105</link>
      <description>&lt;P&gt;This is my sample dashboard XML. I am trying to set this time token on click of that button in both JS.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;form refresh="360" stylesheet="a.css" script="mydir1:js/a1.js, mydir2:js/a2.js" hideFilters="true"&amp;gt;
  &amp;lt;label&amp;gt;Test&amp;lt;/label&amp;gt;
  &amp;lt;description&amp;gt;Tes&amp;lt;/description&amp;gt;
  &amp;lt;fieldset submitButton="false" autoRun="false"&amp;gt;
    &amp;lt;input type="time" token="my_time_token" searchWhenChanged="true"&amp;gt;
      &amp;lt;label&amp;gt;Time Selection&amp;lt;/label&amp;gt;
      &amp;lt;default&amp;gt;
        &amp;lt;earliest&amp;gt;-60m&amp;lt;/earliest&amp;gt;
        &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
      &amp;lt;/default&amp;gt;
    &amp;lt;/input&amp;gt;
   &amp;lt;/fieldset&amp;gt;
&amp;lt;!-- other code here --&amp;gt;
   &amp;lt;/form&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 May 2021 11:44:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Jquery-function-overriding-not-working/m-p/551227#M38105</guid>
      <dc:creator>ankitarath2011g</dc:creator>
      <dc:date>2021-05-11T11:44:04Z</dc:date>
    </item>
    <item>
      <title>Re: Jquery function overriding not working</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Jquery-function-overriding-not-working/m-p/551229#M38106</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/234298"&gt;@ankitarath2011g&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sharing new code as per your requirement. Can you please try this code?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;XML.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;form script="A1.js,A2.js"&amp;gt;
  &amp;lt;label&amp;gt;JS Example&amp;lt;/label&amp;gt;
  &amp;lt;fieldset submitButton="false" autoRun="false"&amp;gt;
    &amp;lt;input type="time" token="my_time_token" searchWhenChanged="true"&amp;gt;
      &amp;lt;label&amp;gt;Time Selection&amp;lt;/label&amp;gt;
      &amp;lt;default&amp;gt;
        &amp;lt;earliest&amp;gt;-60m&amp;lt;/earliest&amp;gt;
        &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
      &amp;lt;/default&amp;gt;
    &amp;lt;/input&amp;gt;
   &amp;lt;/fieldset&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;html&amp;gt;
        &amp;lt;div class="spanclass"&amp;gt;&amp;lt;/div&amp;gt;
      &amp;lt;/html&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
&amp;lt;/form&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;A1.js&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;require([
    'underscore',
    'jquery',
    'splunkjs/mvc',
    'splunkjs/mvc/simplexml/ready!'
], function(_, $, mvc) {
    console.log("In A1");
    $(".spanclass").prepend("&amp;lt;a class='btn a-btn' &amp;gt;Click this&amp;lt;/a&amp;gt;");
    var default_token_model = mvc.Components.get("default");
    var submitted_tokens = mvc.Components.get("submitted");

    $(document).on('click', ".a-btn", function() {
        console.log("This is from A1. Setting up time token with all time.");
        default_token_model.set("form.my_time_token.earliest", "0");
        default_token_model.set("form.my_time_token.latest", "now");
        submitted_tokens.set(default_token_model.toJSON());
    });
});&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;A2.js&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;require([
    'underscore',
    'jquery',
    'splunkjs/mvc',
    'splunkjs/mvc/simplexml/ready!'
], function(_, $, mvc) {
    console.log("In A2");
    var default_token_model = mvc.Components.get("default");
    var submitted_tokens = mvc.Components.get("submitted");
    $(document).off('click', ".a-btn").on('click', ".a-btn", function() {
        console.log("This is from A2. Setting up time token with last 24 hrs.");
        default_token_model.set("form.my_time_token.earliest", "-24h");
        default_token_model.set("form.my_time_token.latest", "now");
        submitted_tokens.set(default_token_model.toJSON());
    });
});&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;BR /&gt;Kamlesh Vaghela&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this reply helps you, an upvote would be appreciated.&lt;/P&gt;</description>
      <pubDate>Tue, 11 May 2021 12:16:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Jquery-function-overriding-not-working/m-p/551229#M38106</guid>
      <dc:creator>kamlesh_vaghela</dc:creator>
      <dc:date>2021-05-11T12:16:36Z</dc:date>
    </item>
    <item>
      <title>Re: Jquery function overriding not working</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Jquery-function-overriding-not-working/m-p/551274#M38110</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/127939"&gt;@kamlesh_vaghela&lt;/a&gt;&amp;nbsp;still not working &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;One point, I can not change anything in A1.js as it is common for all apps and managed by some other team.&lt;/P&gt;&lt;P&gt;In that JS on click function does not have $(document), in stead it is as follows&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt; $(".spanclass").click(function () {
// Set time filter to all time
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It is working when I am changing the on click function of A1.js with $(document) , the one you are suggesting. But, I can not modify anything in that file. Tried the following in A2.js to match that one, but that also didn't work&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;$(".spanclass").off('click', ".a-btn").on('click', ".a-btn", function() {
// set time token to 24 hr
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;Can you suggest something on this&lt;/P&gt;</description>
      <pubDate>Tue, 11 May 2021 18:09:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Jquery-function-overriding-not-working/m-p/551274#M38110</guid>
      <dc:creator>ankitarath2011g</dc:creator>
      <dc:date>2021-05-11T18:09:04Z</dc:date>
    </item>
    <item>
      <title>Re: Jquery function overriding not working</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Jquery-function-overriding-not-working/m-p/551312#M38111</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/234298"&gt;@ankitarath2011g&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;No need to modify A1.js. Just update below code I A2.js&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;$('.spanclass').off('click').on('click', function() {
        console.log("This is from A2. Setting up time token with last 24 hrs.");
        default_token_model.set("form.my_time_token.earliest", "-24h");
        default_token_model.set("form.my_time_token.latest", "now");
        submitted_tokens.set(default_token_model.toJSON());
    });&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this reply helps you, an upvote would be appreciated.&lt;/P&gt;&lt;P&gt;Thanks&lt;BR /&gt;Kamlesh Vaghela&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 12 May 2021 05:00:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Jquery-function-overriding-not-working/m-p/551312#M38111</guid>
      <dc:creator>kamlesh_vaghela</dc:creator>
      <dc:date>2021-05-12T05:00:21Z</dc:date>
    </item>
    <item>
      <title>Re: Jquery function overriding not working</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Jquery-function-overriding-not-working/m-p/551314#M38112</link>
      <description>&lt;P&gt;Thanks a ton&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/127939"&gt;@kamlesh_vaghela&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 12 May 2021 06:01:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Jquery-function-overriding-not-working/m-p/551314#M38112</guid>
      <dc:creator>ankitarath2011g</dc:creator>
      <dc:date>2021-05-12T06:01:25Z</dc:date>
    </item>
    <item>
      <title>Re: Jquery function overriding not working</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Jquery-function-overriding-not-working/m-p/551315#M38113</link>
      <description>Glad to help you. This is also first time for me to have such use case.So I took as challenge.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;If you think ay of my comment help you to build your knowledge base, the upvote would be appreciated.&lt;BR /&gt;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;</description>
      <pubDate>Wed, 12 May 2021 06:06:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Jquery-function-overriding-not-working/m-p/551315#M38113</guid>
      <dc:creator>kamlesh_vaghela</dc:creator>
      <dc:date>2021-05-12T06:06:27Z</dc:date>
    </item>
  </channel>
</rss>

