How to use Validatable to check all cells in a table?

2008-11-21 Thread metalotus
Hi, I have a DataTable and most cells are AjaxEditableLabel. These labels have IValidator's attached, and validate as soon as you finish typing in them. How do I run one big validation of all cells in my table? I need to kick it off programmatically. I think the solution involves

How to implement isIE6() java method?

2009-01-08 Thread metalotus
I have a custom compoent that will return different markup based on browser version. How do I check this? I need to do the check on the server-side and not with javascript. Thanks for advice. I am aware of ClientProperties but don't know how to use it. -- View this message in context:

Re: RadioGroup, differences between FireFox and Internet Explorer?

2009-02-16 Thread metalotus
I have the same issue. Some places in my application, adding AjaxFormChoiceComponentUpdatingBehavior to a RadioChoice simply does not work under IE7. The ajax response is invoked, but the browser does not actually select the new radio button. For example, in one place I have such behavior and it

Re: palette problem

2008-07-31 Thread metalotus
I also had the same problem with palette ... Nothing appeas in the Selected list, there was always an empty selected list ... The solution was to provide all the choices , as suggested by severian. What a time waster! Wicket should have better javadoc :( -- View this message in context:

Palette orientation (Selected, Avaliable) - (Available, Selected)

2008-08-13 Thread metalotus
Palette lists are positioned left-to-right: Available, Selected. How do I change the orientation to right-to-left: Selected, Available? Thanks! -- View this message in context:

Render multiple images with only one model?

2008-09-24 Thread metalotus
Hi, I have multiple images in panel. I have one LoadableDetachableModel that I use for all the images. I notice that my model is attached/detached X + 1 times, where X is the number of images I have. The excessive attach/detach is my problem. More info: The images are NonCachingImage. They use

URL to fetch one component

2008-10-02 Thread metalotus
Hi, I would like to return the markup of a rendered wicket component when accessing a certain URL. I do not want to return a page, only one single component in that page (like how AJAX works, kinda). Here is my plan: - Handle the Request - Create a new component - Add it to the page -

Re: URL to fetch one component

2008-10-02 Thread metalotus
ok, thanks for the tip igor.vaynberg wrote: much easier to create a generic page that can contain any component, add it to there, and render the page -igor On Thu, Oct 2, 2008 at 6:11 PM, metalotus [EMAIL PROTECTED] wrote: Hi, I would like to return the markup of a rendered wicket

Way to handle a URL/GET without a Page?

2008-10-07 Thread metalotus
Hi, Must a URL be handled by a Page object? Is there another option? For exmaple, I want to call a URL from browser-side javascript and then on server-side go through the wicket request cycle, do some work, change some state, and write to the response. But I am worried about using Page to

How to add item to repeater without updating all items

2008-10-22 Thread metalotus
hi, I have an AbstractRepeater, and I want to add an item to the repeater and display it without updating all the items in the repeater. When I try AjaxRequestTarget.addComponent(newItem) I get the following error: Unable to find the markup for the component. That may be due to transparent

Notified when component.remove() called

2008-10-28 Thread metalotus
Hi, I want to know when some components are removed. I need to do a bit of clean-up, such as remove their reference from a List. Is there such thing as a removal listener, or a hierarchy change listener I can use? Thakns, James -- View this message in context: