pass bean property name across JSP pages

Reply

Join Date: Dec 2007
Posts: 2
Reputation: caldercay is an unknown quantity at this point 
Solved Threads: 0
caldercay caldercay is offline Offline
Newbie Poster

pass bean property name across JSP pages

 
0
  #1
Dec 27th, 2007
First, the sample code:

<%-- ================ some.jsp =============== --%>
<%-- bunch of code [...] --%>
<tr>
<td><bean:message key="prompt.desc" /></td>
<td><html:textarea property="desc" /></td>
</tr>
<tr>
<td>
<bean:message key="prompt.notes" />
<tiles:insert page="checkSpellTile.jsp" flush="false"></tiles:insert>
</td>
</tr>
<tr>
<td><html:textarea property="notes" /></td>
</tr>
<%-- ================ end some.jsp =============== --%>

<%-- ================ checkSpellTile.jsp =============== --%>
<%-- some JSP code [...] --%>

<spellingComp:executeSpelling
mode="popup"
textComponentName="notes"
/>
<%-- ================ end checkSpellTile.jsp =============== --%>

Using WebSphere 5.1.

So, my first foray into JSP programming - I have a number of
different JSP pages that need spell check widgets associated
to some text fields. The sample code shown works fine. The
prompt, "Notes ...:" is following by the spell check
[clickable] widget. Then the user clicks the widget, the
spell check is launched and it checks the text in the
"notes" field for the form.

The sticky situation that I can't seem to solve is that each
of the forms associated with each of the different JSP pages
has a different name for the text field (that needs to be
spell checked).

I've tried doing this (between the <tiles:insert...></tiles:insert...>):
<tiles:put name="theNotes" beanName="orderForm" beanProperty="notes"/>

... and then in the checkSpellTile.jsp, inserting this:
<tiles:importAttribute name="theNotes"/>

... and then for the "textComponentName" attribute:
textComponentName="theNotes"

Any ideas how do solve this problem?
Reply With Quote Quick reply to this message  
Join Date: Dec 2007
Posts: 2
Reputation: caldercay is an unknown quantity at this point 
Solved Threads: 0
caldercay caldercay is offline Offline
Newbie Poster

Re: pass bean property name across JSP pages

 
0
  #2
Dec 28th, 2007
whew !!! looks like this one stumped everyone!!
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:



Similar Threads
Other Threads in the JSP Forum
Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC