Hmmm, I created a frameset of html files using the generated html from the
JSPs I was using as my two frame sources - and that works without the mouse
cursor staying in 'busy' mode.

Does that suggest this is a Struts/JSP/tags problem? I can't see how though
because the browser never sees the JSP source, only the generated HTML! I
am so confused by this!

Help!

Rob



                                                                                       
                                            
                    Rob                                                                
                                            
                    Breeds/UK/IBM@       To:     "Struts Users Mailing List" 
<[EMAIL PROTECTED]>                      
                    IBMGB                cc:                                           
                                            
                                         Subject:     form target to different frame 
leaves current frame busy                     
                    04/02/2002                                                         
                                            
                    20:13                                                              
                                            
                    Please respond                                                     
                                            
                    to "Struts                                                         
                                            
                    Users Mailing                                                      
                                            
                    List"                                                              
                                            
                                                                                       
                                            
                                                                                       
                                            





I've got a problem with forms and frames I hadn't noticed until now. Two
frames - input form in one, which when submitted, the results appear in the
second. Works functionally (results appear in target frame) but the mouse
cursor remains with hourglass image when it is over the source frame.

I am submitting a form with a link, using a JavaScript function like so:

<html:form action="saveEntity.do" focus="name" target="detail">
.
.
.
<html:link href
="javascript:subForm(document.forms[0],'Entity.Advanced');"><bean:message
key="link.add_detail"/></html:link>
.
.


the JS functions used is:
function subForm(iform, act) {
  validate(iform, act);
  iform.action="Publish." + act + ".do";
  iform.submit();
}

where act is the action to perform, e.g. if act='Chapter' then the
'Publish.Chapter.do' is set as the form action.

What am I doing wrong?

Thank you.

Rob


--
To unsubscribe, e-mail:   <
mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <
mailto:[EMAIL PROTECTED]>





--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to