Sharat Tallam

Greenhorn
+ Follow
since Sep 02, 2008
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by Sharat Tallam

In order to do some asyncronoss job from EJB, Can i call multiple threads from EJB Session Bean..

I see there are some restrictions in EJB specs mentioned at http://java.sun.com/blueprints/qanda/ejb_tier/restrictions.html

Please let me know you thoughts. If anyone already worked out on this.. Any valuable advice, either to do in web tier or in ejb tier, if i have no choice doing this multple thread job in web tier can i do in ejb tier.

Thanks
Thanks Darryl I will post another you are right my requirement is different from Sandesh..
16 years ago
JSF
I am also having the same requirment as Sandesh, if any simple solution please share...

I tried to call the back bean when click on a button,

<h:form id="form1" styleClass="form">
<hx:commandExButton type="submit" value="Submit" id="button1" styleClass="commandExButton">
<hx:behavior event="onclick" behaviorAction="get" targetAction="group1"></hx:behavior>
</hx:commandExButton>

<h:panelGroup id="group1" styleClass="panelGroup">
<h:inputHidden id="id1" value="#{pc_DynTables.doDisplay}"></h:inputHidden>
<hx:dataTableEx border="0" cellpadding="2" cellspacing="0"
columnClasses="columnClass1" headerClass="headerClass"
footerClass="footerClass" rowClasses="rowClass1, rowClass2, rowClass3, rowClass4"
id="tableEx1" styleClass="dataTableEx" value="#{pc_DynTables.list1}" var="varlist1">
<hx:columnEx id="columnEx1">
<f:facet name="header">
<h:outputText id="text1" styleClass="outputText" value="#{varlist1.value1}"></h:outputText>
</f:facet>
</hx:columnEx>
<hx:columnEx id="columnEx2">
<f:facet name="header">
<h:outputText id="text2" styleClass="outputText" value="#{varlist1.value2}"></h:outputText>
</f:facet>
</hx:columnEx>
<hx:columnEx id="columnEx3">
<f:facet name="header">
<h:outputText id="text3" styleClass="outputText" value="#{varlist1.value3}"></h:outputText>
</f:facet>
</hx:columnEx>
<hx:columnEx id="columnEx4">
<f:facet name="header">
<h:outputText id="text4" styleClass="outputText" value="#{varlist1.value4}"></h:outputText>
</f:facet>
</hx:columnEx>
</hx:dataTableEx>
</h:panelGroup>
<hx:ajaxRefreshRequest id="ajaxRefreshRequest1" target="group1" params="text5"></hx:ajaxRefreshRequest>

I am using IBM jsf extensions...but the approach would be same ..

On click - calling the ajax behaviour for a panel group component to refresh, in this calling a back bean method to set the list1, but it is not calling the backing bean method ..

Any idea, please reply.. if any suggestions..
16 years ago
JSF
How to reterive different lists of data asyncronously and show the results in pagination using JSF Datatable on UI.

- The requirement is, user will click on a button. Two lists of data need to be reterived asyncronosly and show them in respective datatable. Each list has to be show in a seperate datatable.. which ever reterives data first will be shown first on UI and other has to show some kind of message like "loading..." until it reterives the data.. once it done it has to updated the UI with same in a datatable.

Please help if any approach to do this.. let me know

Thank you
[ November 02, 2008: Message edited by: Sharat Tallam ]
16 years ago
JSF
Is it possible to customize a datatable showing odd row in a different background color.

I am using IBM RSA IDE tool containing inbuilt support for JSF components. Any idea, please reply back.. Thanks in advance..

Sheru
16 years ago
JSF
Can i add a panel or another datatable by click on a link of existing row of the datapanel..


I am trying to add a panel below a row like expand and collapse for a row to get different data dynamically. If any help is appreciated.

Thanks
Sheru
16 years ago
JSF