Re: alert window without evenhnadler

2006-09-28 Thread Uday Chandra Karrothi
oon as everything is loaded. (*Chris*) On 9/28/06, Uday Chandra Karrothi <[EMAIL PROTECTED]> wrote: > > Is there a way we can place it in such a way that the alert is after > all the page is completely loaded. I am using tiles. So i might have > to place that after the footer? . &

Re: alert window without evenhnadler

2006-09-28 Thread Uday Chandra Karrothi
the jsp: > > > alert("Info to show"); > > > Stephan > > Uday Chandra Karrothi schrieb: > > Hi guys, > > > > I am doing validation and since that validation is complicated. I am > > submitting the page. and then i want to display the resul

Re: alert window without evenhnadler

2006-09-28 Thread Uday Chandra Karrothi
quot;); in the jsp. > > Can i use soemthing lie > <% > JDialog temp = new Jdialog() > %> > > ... > > when i get back i have to pop up a window. i can display the result on > the page but i want to pop up a window in the page. > > Thanks guys, > Uda

alert window without evenhnadler

2006-09-28 Thread Uday Chandra Karrothi
= new Jdialog() %> ... when i get back i have to pop up a window. i can display the result on the page but i want to pop up a window in the page. Thanks guys, Uday Chandra Karrothi On 9/28/06, Venkata Phani Kumar <[EMAIL PROTECTED]> wrote: - Original Message - From: "Andy

Re: Problems Checking and Array of html:checkbox

2006-09-27 Thread Uday Chandra Karrothi
Here is peace of code that i used . It uses a strign array to set the checkboxes and then get the values( in action form) selected as well.Have you tried using a multibox. . ... selectedAssets is an array that you can populate with the

Re: cannot get value using request.getParameter in struts tiles layout file

2006-09-27 Thread Uday Chandra Karrothi
HI vinod, its not the value of print that you need to make hidden. The variable name Print or whatever value you are passing. Try having that varaible as a hiddden property in the form. I hope that helps. I solved one of the problems liek that. But this may not work for you. Thanks Uday On 9/27/

Re: cannot get value using request.getParameter in struts tiles layout file

2006-09-26 Thread Uday Chandra Karrothi
Can you use the formBean? Something like pgForm.getPrint(); // i am not sure though or you can try this. Declare Print as a hidden variable in the jsp page. That way i think you will be able to access the variable. try this. I hope that works. Uday On 9/26/06, Vinod Kumar <[EMAIL PROTECTED]>

Re: Multiple radio button groups

2006-09-26 Thread Uday Chandra Karrothi
Then you could access the value as: var value = radioValue(document.forms["apprEntry[0].primary_or_adjunct"]); In Java you could just use: String value = request.getParameter("apprEntry[0].primary_or_adjunct"); (*Chris*) On 9/26/06, Uday Chandra Karrothi <[EMAIL PROTECT

Re: Multiple radio button groups

2006-09-26 Thread Uday Chandra Karrothi
ns (or checkboxes) with the same name are in a "button group". The value of the selected radio button (or list of selected checkboxes) is returned from request.getParameter() (or request.getParameterValues()). (*Chris*) On 9/26/06, Uday Chandra Karrothi <[EMAIL PROTECTED]> wrote: >

Multiple radio button groups

2006-09-26 Thread Uday Chandra Karrothi
Hi there, I have a problem. I am using groups of radio buttons. .. Pri. Adj. .. How can get the value of the selected radio buttons in the action form. Is there something like a multibox for a radio group? if it is just one radio button group, i can get it from the property of the form