On Wed 26.06.2013 07:30, Richard W. Adams wrote: > > We have a customer requirement that disabled form buttons be grayed out > rather than Wicket's default behavior of making them invisible.
In my experience, disabled form elements are rendered with the disabled attribute. They are not invisible. > Google has a lot of discussion on the topic, but I didn't see > a "best practice" solution. Does Wicket provide a way to gray > out buttons (or any form control, for that matter)? > > If we have to override something like onRender(), > onBeforeRender(), etc. where would be the best place to do > this? By using CSS yoy may style disabled elements as you like: button[disabled], input[disabled], select[disabled], textarea[disabled] { ... } -Timo --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org