Splunk Search

how can i change inputtext: text to password

uppukumar
Explorer

hi,

i try to change the type of an inputtext : from text to password

Used Jquery
$("[id^=my_field]").attr('type','number')

But not working in latest splunk 7.2.4

Tags (1)
0 Karma
1 Solution

vnravikumar
Champion

Hi

Try this

<form script="password.js">
  <label>password</label>
  <fieldset submitButton="false">
    <input type="text" token="field1" id="test">
      <label>field1</label>
    </input>
  </fieldset>
</form>

js:

require([
    "splunkjs/mvc",
    "splunkjs/mvc/simplexml/ready!",
], function(mvc) {
    $(document).ready(function () {
         $('#test [data-test="textbox"]').attr('type','password');
     });
});

View solution in original post

vnravikumar
Champion

Hi

Try this

<form script="password.js">
  <label>password</label>
  <fieldset submitButton="false">
    <input type="text" token="field1" id="test">
      <label>field1</label>
    </input>
  </fieldset>
</form>

js:

require([
    "splunkjs/mvc",
    "splunkjs/mvc/simplexml/ready!",
], function(mvc) {
    $(document).ready(function () {
         $('#test [data-test="textbox"]').attr('type','password');
     });
});

ldongradi_splun
Splunk Employee
Splunk Employee

As you used #test, it's only valid for 1 text box.
The js function can receive several definitions, like :

    $('#password1 [data-test="textbox"]').attr('type','password');
$('#password2 [data-test="textbox"]').attr('type','password');
$('#password3 [data-test="textbox"]').attr('type','password');

and all the text boxes needing password protection from the xml would use:

    id="password1"
id="password2"
id="password3"

uppukumar
Explorer

hi,

i try to change the type of an inputtext : from text to password

Used Jquery
$("[id^=my_field]").attr('type','number')

But not working in latest splunk 7.2.4

0 Karma
Get Updates on the Splunk Community!

Archived Metrics Now Available for APAC and EMEA realms

We’re excited to announce the launch of Archived Metrics in Splunk Infrastructure Monitoring for our customers ...

Detecting Remote Code Executions With the Splunk Threat Research Team

WATCH NOWRemote code execution (RCE) vulnerabilities pose a significant risk to organizations. If exploited, ...

Enter the Dashboard Challenge and Watch the .conf24 Global Broadcast!

The Splunk Community Dashboard Challenge is still happening, and it's not too late to enter for the week of ...