RE: Form Validation

2004-03-15 Thread Budi Rostiarso
Try putting max arg, because i think range validation must be supplied with min and max (range) value. arg1 name=intRange key=${var:min} resource=false/ arg2 name=intRange key=${var:max} resource=false/ var

RE: Form Validation

2004-03-15 Thread Budi Rostiarso
an error. -Ursprungligt meddelande- Från: Budi Rostiarso [mailto:[EMAIL PROTECTED] Skickat: den 15 mars 2004 11:31 Till: Struts Users Mailing List Ämne: RE: Form Validation Try putting max arg, because i think range validation must be supplied with min and max (range) value

RE: Hidden Field

2003-12-16 Thread Budi Rostiarso
quick answer: you didn't put the closing tag, html:hidden property=parent value=0/ -Original Message- From: Caroline Jen [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 16, 2003 2:45 PM To: [EMAIL PROTECTED] Subject: Hidden Field I tried to create a variable, assign a value to that

html:text with pattern

2003-12-08 Thread Budi Rostiarso
Hi all, is there any extension to html:text which accept pattern as in jstl formatNumber, i.e can handle percentage conversion? So if the actual property value is 0.45, then the generated html input tag will display 45 and vice versa? Or do i have to manually convert the values? TIA, bdr.

RE: validator, range

2003-11-06 Thread Budi Rostiarso
!-- SEE the constant used below for the intRange? --- var-value${maxInteger}/var-value /var /field /form /form-validation -Original Message- From: Budi Rostiarso [mailto:[EMAIL PROTECTED

validator, range

2003-11-05 Thread Budi Rostiarso
Hi all, quick question on validation: Can we setup validator with rules like x must be equal or greater than 8, just to limit the lower bound ? Currently, i use the range validator, which means i have to specify the lower and upper bound, right? Any clues and pointers appreciated. Thanks.

RE: problem passing the value to html-el:frame

2003-10-20 Thread Budi Rostiarso
just a quick guess, use this in your halFrame.jsp: c:out value=${param.ide}/ , since your parameter is defined in paramId=ide. and btw, why are you specify paramName-paramProperty and also name-property? isn't name-property is supposed to be used with Map object? hth, bdr. -Original

RE: struts tags displaying in html

2003-09-01 Thread Budi Rostiarso
The last time i faced this kind of problem is when i forget to include/import taglib definition in my jsps's, for example: %@ taglib uri=/WEB-INF/struts-html.tld prefix=html % But, CMIIW. bdR. -Original Message- From: Peter Abbot [mailto:[EMAIL PROTECTED] Sent: Monday, September

ActionForm-BeanUtils.copyProperties, null and default values

2003-04-04 Thread Budi Rostiarso
Hi, need help with ActionForm and BeanUtils.copyProperties. Basically, i want my POJO properties to be null if the associated ActionForm is empty string or null. But using BeanUtils.copyProperties, the destination gets its properties default values. for example in my POJO, Float property gets a

RE: problem with NTLM and ActionForm (including from struts examples), solved

2003-03-22 Thread Budi Rostiarso
solved my own problem, using http://jcifs.samba.org/ -Original Message- From: Budi Rostiarso Sent: Saturday, March 22, 2003 1:56 PM To: Struts Users Mailing List Subject: problem with NTLM and ActionForm (including from struts examples), continued I've also tried in in resin, same

problem with NTLM and ActionForm (including from struts examples)

2003-03-21 Thread Budi Rostiarso
hi guys, i need some help here. I'm trying to acquire NT user via NTLM for my web app, which ofcourse using struts. After i STW i found the source to do that, right here on struts-user mail list. here is the link: http://www.mail-archive.com/[EMAIL PROTECTED]/msg56484.html . The code is working

problem with NTLM and ActionForm (including from struts examples), continued

2003-03-21 Thread Budi Rostiarso
help :) -Original Message- From: Budi Rostiarso Sent: Saturday, March 22, 2003 1:47 PM To: [EMAIL PROTECTED] Cc: http://www.mail-archive.com/[EMAIL PROTECTED]/msg56484.html Subject: problem with NTLM and ActionForm (including from struts examples) hi guys, i need some help here. I'm trying