sayan mandal

Greenhorn
+ Follow
since May 07, 2008
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by sayan mandal

In my project, I have a tr:panelPopup embedded inside a tr:panelAccordion and the panelPopup(even the link for opening the popup) does not appear. But if I place the panelPopup outside the panelAccordion, it works. Please comment.

<tr:panelPopup text="Click Here!">
<tr:panelGroupLayout layout="vertical">
<tr:goLink text="point 1" destination="http://myfaces.apache.org"/>
</tr:panelGroupLayout>
</tr:panelPopup>
13 years ago
JSF
Hi All,

Ajax form submission does NOT occur if it contains a struts2-file tag (the form gets submitted and expected content correctly shows up in the target div IFF the file tag is removed). Code snippet below where I've prefixes, 's','sx' defined for 'struts-tags','struts-dojo-tags' respectively and 'sx:head' inside <head> tag.
Struts2 versions: (struts 2.1.8,struts2-dojo-plugin-2.1.6.jar).

----------------------------
<s:form theme="simple" method="post" id="f2" enctype="multipart/form-data" >
<table>
<tr>
<td>
<s:select name="dummyDay" list="%{DummyDays}" cssClass="tdfont" onchange="javascript:dojo.event.topic.publish('showVendorDetail')" />
</td>
<td>
<s:file id="xx" name="yy" cssClass="tdfont" />
</td>
</tr>
</table>
<s:url id="d_url" action="loadvndrwebsite" />
<sx:div id="vendorDetails" href="%{d_url}" autoStart="false" listenTopics="showVendorDetail" updateFreq="100" formId="f2">
</sx:div>
</s:form>
----------------------------

Thanks much,
Sayan
13 years ago