Good afternoon.

I have next code in the jsf page:
<t:buffer into="#{DataExportBackBean.htmlBuffer}">
<t:div>
<h:outputText value="String"/>
</t:div>
</t:buffer>


BackBean code:

public class DataExportBackBean
{
        
    private String htmlBuffer;
    
    public String getHtmlBuffer()
    {
        return htmlBuffer;        
    }
    
    public void setHtmlBuffer(String htmlBuffer)
    {
        this.htmlBuffer = htmlBuffer;
    }    
        
    public DataExportBackBean()
    {        
    }
.....


and when i in DataExportBackBean method i have null as htmlbuffer variable.

What is wrong?

thank you
-- 
View this message in context: 
http://www.nabble.com/t%3Abuffer-problem-tf2059539.html#a5674006
Sent from the MyFaces - Users forum at Nabble.com.

Reply via email to