aspose file tools
The moose likes JSF and the fly likes Component are not getting repainted - Trinidad PPR Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » JSF
Reply Bookmark "Component are not getting repainted - Trinidad PPR" Watch "Component are not getting repainted - Trinidad PPR" New topic
Author

Component are not getting repainted - Trinidad PPR

Pushpalatha Gowdra
Greenhorn

Joined: Jan 25, 2008
Posts: 18
Hello,

I have a .jspx file with following code

<?xml version="1.0" encoding="ISO-8859-1" ?>
<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:trh="http://myfaces.apache.org/trinidad/html"
xmlns:tr="http://myfaces.apache.org/trinidad" >

<jsp:directive.page language="java"
contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1" />

<f:view>
<tr:document id="ppr">
<tr:form id="frm1">
<tr:subform id="subfrm1">
<tr:commandButton text="Do Something" id="myButton" partialSubmit="true" actionListener="#{myBean.doSomething}"/>

<!-- repaint the outputText any time 'myButton' has an event -->
<trutputText id="pprrecv" value="#{myBean.textValue}" partialTriggers="myButton"/>
</tr:subform>
</tr:form>
</tr:document>
</f:view>
</jsp:root>

When I check the debug messages, partial trigger is happening, but I am not able to see the changes in UI. The component is not getting repainted. I am struggling to use PPR functionality of trinidad. Any help would be appriciated.


Thanks in advance

Regards,
Pushpa
Pushpalatha Gowdra
Greenhorn

Joined: Jan 25, 2008
Posts: 18
In continuation to my prevous mail, I am using
myfaces-api-1.1.7.jar
myfaces-impl-1.1.7.jar
trinidad-api-1.0.12.jar
trinidad-impl-1.0.12.jar

Regards,
Pushpa
 
IntelliJ Java IDE
 
subject: Component are not getting repainted - Trinidad PPR
 
Threads others viewed
tr:selectManyShuttle - display disabled
Content rendered outside of body tags when using Apache Trinidad 1.0.11
tr:commandButton actionListener not invoking managed bean method
JSF Components does not appear on the browser
Used trinidad chart tag tr:chart in xhtml file, but no output is coming.
developer file tools