[Wicket-user] Is this a bug? Please help.

2005-11-03 Thread blackboy zabaha
To all, I have some problem with wicket, I'm newbie. Condition - A form with a CompoundPropertyModel - 2 RequiredTextField - 1 FileUploadField - 1 TextArea with a CustomValidator when I input string value with comma (,) in either or bothrequiredTextField with an invalid value of textArea

[Wicket-user] How to do validation on a component that relate to other(s).

2005-11-03 Thread blackboy zabaha
I have a form that do loading list of customers. User can upload afile or just fill in datawith a textarea (separate each customer with comma). List of customers is required. Souser have to fill in either (or both) data of these 2 fields (FileUploadField or TextArea). How to do required

Re: [Wicket-user] Is this a bug? Please help.

2005-11-03 Thread blackboy zabaha
it in at the serverside?Or are you saying that the model value does have a , in the string and it is displayed as a ; in the browser?johan On 11/3/05, blackboy zabaha [EMAIL PROTECTED] wrote: To all, I have some problem with wicket, I'm newbie. Condition - A form with a CompoundPropertyModel - 2 Requ

Re: [Wicket-user] Is this a bug? Please help.

2005-11-03 Thread blackboy zabaha
Sorry, How to make a bug report? I'm so new and never subscribe to any mail-list before. BR, blackJohan Compagner [EMAIL PROTECTED] wrote: can you make a bug report for this with a copy of the mail below? On 11/3/05, blackboy zabaha [EMAIL PROTECTED] wrote: This occure on browser, the value

[Wicket-user] reduce page size by not render wicket :id attribute

2005-12-15 Thread blackboy zabaha
Just an opinion of mine. I think the last result of page could not render any wicket:id attribute(also wicket:head, wicket:body, etc..) because it not necessary for browser, andthis may also reduce page size upto 10% (teston some of my report pages) if my page is some kind of report that

Re: [Wicket-user] reduce page size by not render wicket :id attribute

2005-12-15 Thread blackboy zabaha
Thank a lot, I never know that!Ali Zaid [EMAIL PROTECTED] wrote: Hi;WebApplication.getSettings().setStripWicketTags(true);will do the trick On 12/15/05, blackboy zabaha [EMAIL PROTECTED] wrote:Just an opinion of mine. I think the last result of page could not render any wicket:id attribute

[Wicket-user] How to format date String in textfield?

2006-01-19 Thread blackboy zabaha
I have a model with a java.util.Date attribute that will show a current date time as default value on form at first time, I'm using CompoundPropertyModel bind this modelwith form , and when render on html I want it show with format "dd/MM/ HH:mm" but now It alway showwith format"dd/MM/"

[Wicket-user] How to create this component

2006-10-19 Thread blackboy zabaha
Hi, I need a custom component that is a box of content with a title bar, when I click or double click on title bar, it will collapse/expand its content, I don't know the good name for it, so I just call it a 'folder', also it could remember its collapse/expand state when form submitted.

Re: [Wicket-user] How to create this component

2006-10-19 Thread blackboy zabaha
to fit with my folder's markup? any better way? Thanks, Black zabaha Igor Vaynberg wrote: do you want this to work via ajax or just javascript? -Igor On 10/19/06, *blackboy zabaha* [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: Hi, I need a custom component that is a box

[Wicket-user] Question about DataGridView

2007-03-09 Thread blackboy zabaha
Hi, I have a little question, I'm using a DataGridView to display dynamic columns in table, each row has modify link, view detail link, and a selecting chckbox that when user select some checkbox and submit delete button, rows with selected checkbox will be deleted. modify link

Re: [Wicket-user] Question about DataGridView

2007-03-10 Thread blackboy zabaha
of row when I call cellItem.getIndex(), it always return 1 (It is second column in my table) Am I misunderstand? - see how DataTable does, namely DataTable.newRowItem() i believe. Thank, I can do it now. Thank you again, Blackzabaha Igor Vaynberg wrote: On 3/9/07, *blackboy zabaha* [EMAIL

[Wicket-user] I have problem with custom component

2007-05-12 Thread blackboy zabaha
Hi,     I'm trying to make a custom component. It shows list of items, usercan check the checkboxs then click delete buttonto delete all selected items, or can click add button to go to an add itempage.     At first I test it alone in a form, it work ok, but later when