• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Ron McLeod
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

This is for BEAR Bear Bibeault

 
Greenhorn
Posts: 14
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
how to solve when a subject belongs to more than one topic?

==============================================
=====================================================
<html:hidden name="resultsForm" property="event"/>
<td><html:submit styleClass="buttonTextSmall" property="event" value="Submit"/></td>
<td><html:submit styleClass="buttonTextSmall" property="event" value="Clear"/></td>
===========================================

When I submit the form on following(when using drop-down only) doens't set 'event' attribute on action form :
===============================
<html:select styleId="C2" styleClass="inputCell" property="criteria2" onchange="return c2change(this.form);">
<html ptions collection="criteriaList" property="value"
labelProperty="label" /></html:select>
===============================

javascript call from above is:
===============================
function c2change(form)
{
var slctdVal = document.getElementById("C1").value;
form.event.value = "Redraw";
form.submit();
return true;

}

===========================================
This problem is part of html/javascript and problem is also part of struts...

so i thought, It needs to be at both places...as person having knowledge of this topic and not the other..can't solve the question..

how do you solve such problems? need rational answer pls.
[ December 03, 2005: Message edited by: s basetti ]
 
Sheriff
Posts: 67756
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
In that case, you post the topic in the one forum that makes the best sense. Don't worry if you get it wrong, a bartender will move it for you. But it wastes people's time when multiple redundant conversations take place, so cross-posting is not allowed.

If you have issues with this policy, the JavaRanch forum is the best place to discuss this.
 
reply
    Bookmark Topic Watch Topic
  • New Topic