| Author |
Message |
|
|
Post subject: link inside a grid not working in jsf
Posted: Aug 06, 2008 - 04:16 AM
|
|
Registered Member


Joined: Oct 15, 2005
Posts: 90
|
|
hi all
I am trying to a use a link inside a grid and it gives error in running why?
<h:panelGrid border="1" columns="2">
<h:outputText value="here is working"></h:outputText>
<h:outputText value="here is not working
<h:commandLink action="page2">
<h:outputText value="page2" />
</h:commandLink>
">
</h:outputText>
</h:panelGrid>
anyone knows how to use alternative for a layout and using a commandlink in jsf
cheers
Amir |
|
|
| |
|
|
|
 |
|
|
Post subject: RE: link inside a grid not working in jsf
Posted: Aug 06, 2008 - 04:37 PM
|
|
Registered Member


Joined: Apr 18, 2007
Posts: 5657
|
|
| Whats the error that your getting? |
_________________ Nipun
MyEclipse Support
|
| |
|
|
|
 |
|
|
Post subject:
Posted: Aug 08, 2008 - 03:38 AM
|
|
Registered Member


Joined: Oct 15, 2005
Posts: 90
|
|
hi
the error is
ServletException in:/pages/page1/body.jsp] /pages/page1/body.jsp(26,29) equal symbol expected'
the 26,29 is on the character " on page2
It loks like does not liike nested double quotes. I tried all options I can but of no use
thanks a lot |
|
|
| |
|
|
|
 |
|
|
Post subject:
Posted: Oct 10, 2008 - 03:47 PM
|
|
Registered Member


Joined: Sep 17, 2004
Posts: 39
|
|
| Either escape the embedded quotes or figure out a different way to express it. |
|
|
| |
|
|
|
 |
|
|
Post subject:
Posted: Oct 10, 2008 - 04:53 PM
|
|
Registered Member


Joined: Oct 15, 2005
Posts: 90
|
|
hi dear
Can you kindly make the possible to attempt changes on the ocde.
many thanks really
Amir |
|
|
| |
|
|
|
 |
|
|
Post subject:
Posted: Oct 15, 2008 - 03:40 PM
|
|
Registered Member


Joined: Sep 17, 2004
Posts: 39
|
|
Here's the first thing I'd try.
<h:outputText value="here is not working
<h:commandLink action='page2'>
<h:outputText value='page2' />
</h:commandLink>
"> |
|
|
| |
|
|
|
 |
|
|
Post subject:
Posted: Oct 17, 2008 - 10:14 PM
|
|
Registered Member


Joined: Oct 15, 2005
Posts: 90
|
|
thanks
but you have not made any changes t my code. Have a look.
Amir |
|
|
| |
|
|
|
 |
|
|