Splunk Search

show text in the next line

vikas_gopal
Builder

Hello Everyone,
Using javascript I am showing some text in a read only text box, now I want to add another line to this box .In java script I used

 var value1 = "Month End Closure Report" + " - " + n + "  " + yyyy ; //here n is month name
 var value2 = "hello" + " - " + p + "  " + yyyy ;   //here p is day name 
 var value3= value1 +'\n' + value2;
 document.getElementById('text1').value =value3;
 alert(value3);

Alert shows correct data (I mean hello-Sun2014 in the next line)e.g.
"Month End Closure Report - March2014
hello-Sun2014"

Problem:- text box which I designed in simplexml is not showing Hello string in the next line.It appears in a single line like "Month End Closure Report - March2014 hello-Sun2014".

 <html >
  <input type ="text"  id = "text1" value= "" readonly="readonly" textmode="multiline"  />

  </html>

Please suggest what is missing..?

Tags (1)
0 Karma
1 Solution

aelliott
Motivator

aelliott
Motivator

vikas_gopal
Builder

@aelliott Thanks for your time..
It works fine with textarea but I was having problem with the text alignment so I used label and it works fine..thanks again

0 Karma

aelliott
Motivator

I normally use http://www.w3schools.com/tags/tag_textarea.asp for multiple line text boxes

0 Karma

vikas_gopal
Builder

again same result it's appearing fine in the alert but not in the text box .Seems like some property of text box restricting it.

0 Karma

aelliott
Motivator
0 Karma

vikas_gopal
Builder

thanks for the quick response
I replaced r with br but it won't work, now it's like
var value3= value1 +'
' + value2;
How I can type replace command in the existing code..?

0 Karma
Get Updates on the Splunk Community!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...