Re: Using wicket:... tags messes up css

2015-03-10 Thread Joachim Schrod
On 03/04/15 22:03, Andreas Lundblad wrote: I've noticed that wicket:... tags such as wicket:enclosure messes up the CSS sometimes. In my particular example I have div.formRows div { display: table-row; } and when I try to put an enclosure around a table row, the CSS child

Re: Using wicket:... tags messes up css

2015-03-04 Thread Thorsten Schöning
correct solution. The wicket tags are useful during debugging and I'd like them to be available (except possibly in this case) in development mode. You obviously can't have both, either you see them as part of your end user DOM, than you need to care in CSS of them, or not, then just strip them

Re: Using wicket:... tags messes up css

2015-03-04 Thread Tobias Soloschenko
Hi, try getMarkupSettings().setStripWicketTags(true); in the applications init. kind regards Tobias Am 04.03.15 um 22:03 schrieb Andreas Lundblad: I've noticed that wicket:... tags such as wicket:enclosure messes up the CSS sometimes. In my particular example I have div.formRows div

Re: Using wicket:... tags messes up css

2015-03-04 Thread Don Ferguson
I think: getMarkupSettings().setStripWicketTags(true); in your Application.init() would do the trick. -Don On Mar 4, 2015, at 1:03 PM, Andreas Lundblad andreas.lundb...@gmail.com wrote: I've noticed that wicket:... tags such as wicket:enclosure messes up the CSS sometimes. In my

Using wicket:... tags messes up css

2015-03-04 Thread Andreas Lundblad
I've noticed that wicket:... tags such as wicket:enclosure messes up the CSS sometimes. In my particular example I have div.formRows div { display: table-row; } and when I try to put an enclosure around a table row, the CSS child selector doesn't work. Is there an easy workaround (except

Re: Using wicket:... tags messes up css

2015-03-04 Thread Andreas Lundblad
That's a very crude solution. Almost as crude as switching deployment mode. The wicket tags are useful during debugging and I'd like them to be available (except possibly in this case) in development mode. best regards, Andreas Lundblad On Wed, Mar 4, 2015 at 10:11 PM, Tobias Soloschenko

Re: Using wicket:... tags messes up css

2015-03-04 Thread Andreas Lundblad
the only correct solution. The wicket tags are useful during debugging and I'd like them to be available (except possibly in this case) in development mode. You obviously can't have both, either you see them as part of your end user DOM, than you need to care in CSS of them, or not, then just

Wicket tags in output markup may change styles

2012-08-21 Thread Adriano dos Santos Fernandes
Hi! I was creating a website with Wicket and the CSS styles were fine. Then I decided to replace some texts with wicket:message / and it changed the formatting. I know setStripWicketTags(true), but I prefer to have it working with setStripWicketTags(false) in dev. mode. The html is actually a

Re: Wicket tags in output markup may change styles

2012-08-21 Thread Pointbreak
You should at least escape your ':', i.e. something like: BODY WICKET\:MESSAGE * { } But I doubt it will work on any browser. If you really want to keep the wicket:message tags (imho you're better of without them), you could wrap them in another container (div/span) and use that conatiner as a

stripping of wicket tags in html

2011-05-03 Thread madaan18
.. Further after knowing i want to add a div container outside the span tag..Please tell me how to do that -- Thanks in advance -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/stripping-of-wicket-tags-in-html-tp3491865p3491865.html Sent from the Users forum mailing list

Re: stripping of wicket tags in html

2011-05-03 Thread Ernesto Reinaldo Barreiro
in context: http://apache-wicket.1842946.n4.nabble.com/stripping-of-wicket-tags-in-html-tp3491865p3491865.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr

Re: stripping of wicket tags in html

2011-05-03 Thread madaan18
-of-wicket-tags-in-html-tp3491865p3491901.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: stripping of wicket tags in html

2011-05-03 Thread Ernesto Reinaldo Barreiro
this message in context: http://apache-wicket.1842946.n4.nabble.com/stripping-of-wicket-tags-in-html-tp3491865p3491901.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr

wicket tags

2011-04-28 Thread kamiseq
/ /form /wicket:panel usually I style the component in offline mode (without running the server) so I need to add some additional markup to mock it, plus I set wicket to strip wicket tags and override onComponentTag to set name of the tag (let say section) so it look like. section class=custom

RE: wicket tags

2011-04-28 Thread Wilhelmsen Tor Iver
will make it easier to see the design. mvh - Tor Iver Wilhelmsen, Arrive AS -Original Message- From: kamiseq [mailto:kami...@gmail.com] Sent: 28. april 2011 11:14 To: users@wicket.apache.org Subject: wicket tags hi, this is more about how you guys working with wicket rather then a bug

Re: wicket tags

2011-04-28 Thread kamiseq
I know I can work around this, it is just I see it as a place to improve framework. I want to use immediate-child selectors because I see benefits from this whatever that is I know that in runtime those tags goes away but while working with raw html files (let say graphic designer takes them and

Strip Wicket Tags but keep Wicket IDs

2010-06-21 Thread Baschir Jaghoori
Hi, Does anyone know if it is possible to remove all Wicket Tags from output but keep the wicket:id attribute? Thanks Baschir - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users

How to strip Wicket tags in development mode?

2010-03-04 Thread David Chang
I understand that in deployment, all Wicket tags are stripped from the rendered markup that is sent to the client. How can I strip all Wicket tags from the rendered markup in development mode. I want to see clean HTML content in the client. Thanks for help

Re: How to strip Wicket tags in development mode?

2010-03-04 Thread James Carman
http://wicket.apache.org/docs/1.4/org/apache/wicket/settings/IMarkupSettings.html#setStripWicketTags%28boolean%29 On Thu, Mar 4, 2010 at 6:44 PM, David Chang david_q_zh...@yahoo.com wrote: I understand that in deployment, all Wicket tags are stripped from the rendered markup that is sent

Re: How to strip Wicket tags in development mode?

2010-03-04 Thread Cemal Bayramoglu
understand that in deployment, all Wicket tags are stripped from the rendered markup that is sent to the client. How can I strip all Wicket tags from the rendered markup in development mode. I want to see clean HTML content in the client. Thanks for help

Re: How to strip Wicket tags in development mode?

2010-03-04 Thread David Chang
James and Cemal, Thanks so much for your kind help! Cheers. --- On Thu, 3/4/10, Cemal Bayramoglu jweekend_for...@cabouge.com wrote: From: Cemal Bayramoglu jweekend_for...@cabouge.com Subject: Re: How to strip Wicket tags in development mode? To: users@wicket.apache.org Date: Thursday

how to strip wicket tags for particular component

2009-07-20 Thread Vladimir Kovalyuk
and it is eventually displayed as the simple list. Stripping wicket tags at the application level would obviously solve the problem. But I'd like to keep wicket tags for most markup and strip only for menu. Can I override Border class somehow and strip wicket tags manually?

Re: how to strip wicket tags for particular component

2009-07-20 Thread Mathias Nilsson
().setStripWicketTags(false); super.onAfterRender(); } }; -- View this message in context: http://www.nabble.com/how-to-strip-wicket-tags-for-particular-component-tp24568122p24568890.html Sent from the Wicket - User mailing list archive

Re: how to strip wicket tags for particular component

2009-07-20 Thread Vladimir K
and it is eventually displayed as the simple list. Stripping wicket tags at the application level would obviously solve the problem. But I'd like to keep wicket tags for most markup and strip only for menu. Can I override Border class somehow and strip wicket tags manually? -- View

Re: how to strip wicket tags for particular component

2009-07-20 Thread Vladimir K
().getMarkupSettings().setStripWicketTags(false); super.onAfterRender(); } }; -- View this message in context: http://www.nabble.com/how-to-strip-wicket-tags-for-particular-component-tp24568122p24568972.html Sent from the Wicket

Re: how to strip wicket tags for particular component

2009-07-20 Thread Mathias Nilsson
-to-strip-wicket-tags-for-particular-component-tp24568122p24571367.html Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users

Re: how to strip wicket tags for particular component

2009-07-20 Thread Erik van Oosten
Turning the 2 lines around might give better results. Regards, Erik. Mathias Nilsson wrote: What about @Override public void onComponentTag( ComponentTag tag){ tag.remove( wicket:id ); super.onComponentTag(tag);

How to strip wicket tags from markup in development mode?

2008-05-21 Thread Lauri Lehtinen
Hi - Is there an easy way to strip the wicket tags from the produced markup while keeping the application in development mode? I'm finding the development of a Facebook FBML app pretty painful, as wicket:* are ignored by Facebook and result in error messages. With deployment configuration I

Re: How to strip wicket tags from markup in development mode?

2008-05-21 Thread Gerolf Seitz
in MyApplication.init(): getMarkupSettings().setStripWicketTags(true); Gerolf On Wed, May 21, 2008 at 7:08 PM, Lauri Lehtinen [EMAIL PROTECTED] wrote: Hi - Is there an easy way to strip the wicket tags from the produced markup while keeping the application in development mode? I'm

Re: How to strip wicket tags from markup in development mode?

2008-05-21 Thread Uwe Schäfer
Lauri Lehtinen schrieb: Is there an easy way to strip the wicket tags from the produced markup while keeping the application in development mode? take a look at http://wicket.apache.org/docs/wicket-1.3.2/wicket/apidocs/org/apache/wicket/settings/Settings.html#setStripWicketTags(boolean) cu

RE: How to strip wicket tags from markup in development mode?

2008-05-21 Thread Zappaterrini, Larry
In Application.init add getMarkupSettings().setStripWicketTags(true); -Original Message- From: Lauri Lehtinen [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 21, 2008 1:09 PM To: users@wicket.apache.org Subject: How to strip wicket tags from markup in development mode? Hi

Re: Wicket tags and IE6

2008-05-17 Thread Frank Bille
What happens if you add the wicket namespace to the html tag? html xmlns:wicket=http://wicket.apache.org; Frank On Fri, May 16, 2008 at 7:33 PM, John Krasnay [EMAIL PROTECTED] wrote: I've just noticed a specific problem with Wicket tags interfering with IE6. I have a page that uses

Re: Wicket tags and IE6

2008-05-17 Thread John Krasnay
[EMAIL PROTECTED] wrote: I've just noticed a specific problem with Wicket tags interfering with IE6. I have a page that uses the jqModal plugin for jQuery to display a popup div. It works fine on FF, but on IE6 the overlay (the semi-transparent div that blocks out the rest of the page while

Re: Wicket tags and IE6

2008-05-17 Thread Frank Bille
=http://wicket.apache.org; Frank I thought about that, but the page already has the declaration. jk On Fri, May 16, 2008 at 7:33 PM, John Krasnay [EMAIL PROTECTED] wrote: I've just noticed a specific problem with Wicket tags interfering with IE6. I have a page that uses the jqModal plugin

Wicket tags and IE6

2008-05-16 Thread John Krasnay
I've just noticed a specific problem with Wicket tags interfering with IE6. I have a page that uses the jqModal plugin for jQuery to display a popup div. It works fine on FF, but on IE6 the overlay (the semi-transparent div that blocks out the rest of the page while the popup is active) pushes

Re: Wicket tags and IE6

2008-05-16 Thread Ryan Gravener
You can place getMarkupSettings().setStripWicketTags(true); into your Application.init(). I believe these are automatically stripped when you are in deployment mode. On Fri, May 16, 2008 at 1:33 PM, John Krasnay [EMAIL PROTECTED] wrote: I've just noticed a specific problem with Wicket tags

Re: Wicket tags and IE6

2008-05-16 Thread John Krasnay
are in deployment mode. On Fri, May 16, 2008 at 1:33 PM, John Krasnay [EMAIL PROTECTED] wrote: I've just noticed a specific problem with Wicket tags interfering with IE6. I have a page that uses the jqModal plugin for jQuery to display a popup div. It works fine on FF, but on IE6 the overlay

Re: Where to find documentation for Wicket tags?

2008-02-21 Thread Igor Vaynberg
there is a wiki page that lists them... -igor On Thu, Feb 21, 2008 at 11:09 AM, MYoung [EMAIL PROTECTED] wrote: Are they documented? -- View this message in context: http://www.nabble.com/Where-to-find-documentation-for-Wicket-tags--tp15618680p15618680.html Sent from the Wicket - User

Re: Where to find documentation for Wicket tags?

2008-02-21 Thread Scott Swank
On the wiki http://cwiki.apache.org/WICKET/wickets-xhtml-tags.html On Thu, Feb 21, 2008 at 11:09 AM, MYoung [EMAIL PROTECTED] wrote: Are they documented? -- View this message in context: http://www.nabble.com/Where-to-find-documentation-for-Wicket-tags--tp15618680p15618680.html Sent

Where to find documentation for Wicket tags?

2008-02-21 Thread MYoung
Are they documented? -- View this message in context: http://www.nabble.com/Where-to-find-documentation-for-Wicket-tags--tp15618680p15618680.html Sent from the Wicket - User mailing list archive at Nabble.com

Re: Where to find documentation for Wicket tags?

2008-02-21 Thread Claudio Miranda
http://cwiki.apache.org/WICKET/wickets-xhtml-tags.html MYoung wrote: Are they documented? - Claudio Miranda http://weblogs.java.net/blog/claudio http://www.claudius.com.br/blog -- View this message in context: http://www.nabble.com/Where-to-find-documentation-for-Wicket-tags