sapna dhamone

Greenhorn
+ Follow
since Apr 17, 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 sapna dhamone

Hi All,

I have used table-tag to draw a table in my application using struts framework. I am displaying all the records in the table ,using an iterator . I want to refresh only this table after certain interval (as I have multiple tables in this particular JSP i just want one table to be refershed).
i.e., after refreshing the table the records must be present in the form, as I want to pass the form values to the next request.



The table code is as below.



<table>

<logic:iterate id="running" name="vehiclesRunning">

<tr>

<td width="16%"><bean:message key="asl.vehicleRegNo"/></td>

<td width="11%"><bean:message key="asl.date"/></td>

<?tr>

</logic:iterate>

</table>



I was able to refresh a textbox using Ajax, but unable to refresh a table content.

Can someone help me how to refresh a table either using Ajax/datagrid.


Thanks in Advance
15 years ago
Hi,

I was working on display tags in struts in my JSP pages.i could fing little information in internet using column decorator of displaytag.

can anyone provide me links some detail explaination on how column decorator works with display tag?

please help.
15 years ago
Hi All,

I am facing a typical problem.i need information on this display tag usage

currently i am using display tag in this way.

<display:table name="sessionScope.LIST" pagesize="50" class="simple" id="cgList">
<bean:define id="selValue" name="showCgLtForm" property="selPos">
<display:column style="{width: 80px;}" property="label" title="key"
sortable="true" headerClass="sortable" href="cgConfig.do?
action=display&position=<bean:write name='selValue'>"

paramId="label"/>
</bean:define>
<display:column style="{width: 450px;}" property="value" title="value" />
</display:table>

when i am trying to retrieve the query string "position" .i get only the
this value as "<bean:write name" rather than selValue.

the other option i tried:
href="cgConfig.do?action=display&position=<%=selValue %>>"

even this is displaying null value.

Does the bean define tag doesnt work in conjuction with display:column?

any suggestions and help would be thankful!
Thanks Eric for the hints... but can you explain more
about it.
Hi All,

I have an task which says that inthe password field when I type in
special character(/\$|%\|=";@)it should alert the user immediately when
he is typing through an image and not an alert box.

it should not alert him after he has clicked on submit.


waiting for your answers
thanks in advance