I am Working on developing the custom toolbar component using JSF
Which includes crude operation like ADD Delete etc, and Navigation controls like
Next and Pre.All the operation is working fine to me with single grid in single JSP page
But when I incorporate multiple grids with multiple toolbar .I could not able to achive the toolbar operation binding to specific bean which will be specified as an attribute in the custom tag . I need suggestion to overcome this problem or link to locate the code samples if availabe so that I can simulate the same .
Discussions
Web tier: servlets, JSP, Web frameworks: Problem in developing Custom tool bar using JSF
-
Problem in developing Custom tool bar using JSF (2 messages)
- Posted by: Shivakumar GR
- Posted on: October 27 2005 02:31 EDT
Threaded Messages (2)
- Problem in developing Custom tool bar using JSF by Marina Prikaschikova on October 31 2005 06:59 EST
- Problem in developing Custom tool bar using JSF by Chris Schalk on November 01 2005 03:05 EST
-
Problem in developing Custom tool bar using JSF[ Go to top ]
- Posted by: Marina Prikaschikova
- Posted on: October 31 2005 06:59 EST
- in response to Shivakumar GR
See for example toolbars in Coldtags suite:
http://www.servletsuite.com/jsp.htm -
Problem in developing Custom tool bar using JSF[ Go to top ]
- Posted by: Chris Schalk
- Posted on: November 01 2005 03:05 EST
- in response to Shivakumar GR
I'm assuming your are assigning a unique subcomponent identifier to your component?
For example an inputdate component could have ids like:
clientId + MONTHINPUT
clientId + YEARINPUT
clientId + DAYINPUT
where the MONTHINPUT .. are constant String like ":monthinput" etc..
Since each component has a unique client id, and the subcomponents have their unique identifier, there should be a problem identifying the different components and their respective subcomponents.
-Chris