 
					
				
		
Hi
I am trying to re-set a text box when a button is pressed. However as it using a <html> button, i just dont know where to start. Any ideas ? Thanks in advance
    <panel depends="$host_token$,$functional_validation_token$" id="comment" rejects="$showExpandLink5$">
      <title>Update Comments for $script_token$</title>
      <input type="text" token="comment_token" searchWhenChanged="true">
        <label>Comment</label>
        <default>*</default>
        <initialValue>*</initialValue>
      </input>
      <html>
                 <style>.btn-primary { margin: 5px 10px 5px 0; }</style>
                 <a href="http://$mte_machine$:4444/executeScript/envMonitoring@@qcst_processingScriptsChecks.sh/-updateComment/$runid_token$/$script_token$/$npid_token$/%22$comment_token$%22" target="_blank" class="btn btn-primary" style="height:25px;width:250px;">Submit</a>
             </html>
    </panel>
 
					
				
		
 
					
				
		
I think I have applied this correctly - but it does want to work....hmmm.
I need it to go to a new link and to reset the token
  <panel depends="$host_token$,$functional_validation_token$" id="comment" rejects="$showExpandLink5$">
      <title>Update Comments for $script_token$</title>
      <input type="text" token="comment_token"  searchWhenChanged="true">
        <label>Comment</label>
        <default>*</default>
        <initialValue>*</initialValue>
      </input>
      <html>
                 <style>.btn-primary { margin: 5px 10px 5px 0; }</style>
                 <a href="http://$mte_machine$:4444/executeScript/envMonitoring@@qcst_processingScriptsChecks.sh/-updateComment/$runid_token$/$script_token$/$npid_token$/%22$comment_token$%22" target="_blank" class="btn btn-primary" id="buttonId" style="height:25px;width:250px;">Submit</a>
             </html>
    </panel>
require([
        'jquery',
        'splunkjs/mvc',
        'splunkjs/mvc/simplexml/ready!'
    ], function ($, mvc) {
    var tokens = mvc.Components.get("default");
    $('#buttonId').on("click", function (e){
        tokens.set("form.comment_token", "*");
    });
});
