Hiren Dutta

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

Recent posts by Hiren Dutta

try to use commandLink or outputlink with the same. It should work
14 years ago
JSF
Same can be done ICEFaces Fileupload. If you are using simple JSF try to write JSF taglib to achieve this.
14 years ago
JSF
Take a binding of datatable and generate datatable dynamically from server side with desired value .. please google to know hoew to create dynamic datatable .
http://forums-beta.sun.com/thread.jspa?messageID=4419556
15 years ago
JSF
My Vote will go for JAXB. With a little trick we can save lot of JAXB marshalling and unmarshalling time. JAXB spends most of the time to create JAXB context. We just have to make JAXBContext static final. If you are using multiple JAXBContext, create 1st time and keep in static Hashmap.
15 years ago
If you are trying to open Popup on link click try to use <h: outputLink> instead of <h:commandLink> and use onclick event to open Popup....

<h: outputLink onclick="window.open('http://www.google.com', 'WindowName', 'dependent=yes, menubar=no, toolbar=no'); return false;" value="#">
<h: outputText value="popup" />
</h: outputLink>
15 years ago
JSF
Go for Facelet dear... Its having less issuse than Tiles integration.....
15 years ago
JSF
If you are trying to open Popup on link click try to use <h: outputLink> instead of <h:commandLink> and use onclick event to open Popup....

<h: outputLink onclick="window.open('http://www.google.com', 'WindowName', 'dependent=yes, menubar=no, toolbar=no'); return false;" value="#">
<h: outputText value="popup" />
</h: outputLink>
15 years ago
JSF
I have a same problem... can anyone please suggest..... its very urgent...
16 years ago
JSF
Yes..I think Abhijit is right. we can't access the instance variable before instanciate the object. As static variable is the class property we can access it.
I think it will an Runtime error as in runtime itself we will know what is the actual instance.