Re: Line breaks and label

2010-07-23 Thread Witold Czaplewski
hmm...sorry, i don't understand what you mean. Here a small example how to implement this. HTML-Template: span wicket:id=myspan class=nowrap/span CSS: .nowrap {white-space:nowrap;} Java: add(new Label(myspan, new ModelString(Some long Text...)); Hope it helps. :) Witold Am Thu, 22 Jul 2010

Re: Line breaks and label

2010-07-22 Thread Martijn Dashorst
This is not a wicket problem, but rather a browser rendering issue. Use nbsp; instead of whitespace. Martijn On Thu, Jul 22, 2010 at 5:47 AM, Nii Amon Dsane jaz...@gmail.com wrote: Hello, I have a label that's displayed on a page. The label displays but with a linebreak and this breaks the

Re: Line breaks and label

2010-07-22 Thread Witold Czaplewski
Or use in CSS: white-space:nowrap; Witold Am Thu, 22 Jul 2010 11:56:57 +0200 schrieb Martijn Dashorst martijn.dasho...@gmail.com: This is not a wicket problem, but rather a browser rendering issue. Use nbsp; instead of whitespace. Martijn On Thu, Jul 22, 2010 at 5:47 AM, Nii Amon Dsane

Re: Line breaks and label

2010-07-22 Thread Nii Amon Dsane
Hi Martijn, many thanks for the response. The linebreaks are not being applied on whitespaces. I am using spans with wicket:id to write out some strings in my markup. The strings are displayed alright but I notice that the linebreaks are applied before and after the string. For instance, I have

Re: Line breaks and label

2010-07-22 Thread Nii Amon Dsane
Hi Witold, I must be doing something very wrong because the CSS doesn't work on any tag that has wicket:id! I checked the Pro Wicket book and apparently if you put your CSS files into the head of the markup file, the styles are going to apply. In my case the styles apply to all tags which do not

Re: Line breaks and label

2010-07-22 Thread Nii Amon Dsane
Hi Witold, I noticed something. When I was using tags to embed strings in to the markup, the CSS wasn't applied but when I tried it with a div the styles were applied. Is this expected behaviour? nii amon -- View this message in context: