cancel
Showing results for 
Search instead for 
Did you mean: 

Query on Dynpages

Former Member
0 Kudos

Hi

I have created an application for password change using dynpages.....In that I want to display 4 rules for the password.....But I am having a problem of inserting a blank line in between ..Could some one please help me on how to skip a line

Regards

Krishna

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

To get new line or blank line in dynpage use the following code

Form myForm = this.getForm();

myForm.addRawText("<br>"); //this takes to new line

If u add this two times u will get a blank line.

Regards,

Tamil K

Former Member
0 Kudos

Hi Tamil,

I tried this but still I am not able to get the blank line after the message..

Any suggestions??

Regards

Krishna

Former Member
0 Kudos

Hi,

In that code use line break (br) used in html with angle brackets (<break>)inside the myForm.addRawText( )in double quotes. Actually that is not visible in the previous reply because of some problem in displaying the code.

i am not able to give the exact code clearly due to this problem .so please understand from this.or if u r not able to understand give ur mail id i will give u there.

Regards,

Tamil K

Message was edited by:

Tamil Venthan

Answers (2)

Answers (2)

Former Member
0 Kudos

hi Krish,

use a JSP and include the normal HTML code,

call this JSP from an abstract portal component.

Cheers

Stl...

Former Member
0 Kudos

Are you planning to show those rules in a JSP in your Dynpage application?

If so, a <br> tag will move you to the next line and another <br> tag will give you a line space in between.

Hope I understood you right