Nitin Tonk

Greenhorn
+ Follow
since Jun 24, 2008
Nitin likes ...
Java
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 Nitin Tonk

Thanks everybody for the valuable feedback.
13 years ago
Currently we are developing a flex UI. The next we have to decide on the Persistance part that can be used.
The application has majorly CRUD operations with large amount of data.
Will using Spring persistance be the best solution.?
13 years ago
How scalable is the integration of Spring/Hibernate persistence tier with Flex.
13 years ago
I had a experience working with Websphere Portal 6.1 and developed portal applications usign JSR 168,JSR 286 Portlets.
Now i am having a requirement to work on Liferay.

As per programming interface it will be the same ie (JSR's). But want to know what are the major differences at server level ( features,configuration,architecture, out-of-box services) when compared to Websphere Portal ?
13 years ago
How would you rate the performance and scalability of Liferay as compared to Websphere Portal.?
13 years ago
Hi Deepa
For JSF,if you are a beginner then rose india is best.

Rose India JSF

15 years ago
JSF
Thanks Narendra for the help.
I got the solution.
Actually i am now passing the value as querystring and have made this property as a managed property in the backing bean.

15 years ago
JSF
This can be done in case i am calling a servlet.
But here i am displaying a JSF page in the popup,so could not pass parameters in query string
15 years ago
JSF
Hi,
I have a JSF page where i have a link, on clicking this link a new JSF popup window needs to be opened. What is required is that i want to pass a parameter value to this popup JSF window.
Can anyone help.
[ July 09, 2008: Message edited by: Nitin Tonk ]
15 years ago
JSF
Thanks Darryl for the response.
15 years ago
JSF
I am working on a page in which i need to delete an item.
Once i delete it,the page still shows the value on the page,until i refresh the page manually.
Please Advise.
15 years ago
JSF
Thanks Darryl,

I have used this code in my JSP.
createGroup2 is under the navigation rule in faces-config

<t:commandButton styleClass="btn" id="createGrp"
action="createGroup2" value="Create Group"
rendered="#{folderBean.canManageGroups}" >
<t:updateActionListener property="#{group.folderId}" value="#{folderBean.folderFullPath}"/>
</t:commandButton>

The problem is that i do get the value of rendered as "true" but the action is not called.
[ June 27, 2008: Message edited by: Nitin Tonk ]
15 years ago
JSF
I already tried by removing the immediate attribute.
But it doesnt works.
15 years ago
JSF
I am using rendered attribute to hide a command button

<t:commandButton styleClass="btn" id="createGrp"
immediate="true"
action="createGroup2"
value="Create Group"
rendered="#{folderBean.canManageGroups}">
</t:commandButton>


Rendering does works fine in this case.
But when the command button is clicked.it goes back to the root page.
Help...!!!
15 years ago
JSF