i am using sem-gen. my facelets page has a -display tag library.

<ui:composition xmlns="http://www.w3.org/1999/xhtml";
                        xmlns:d="http://displaytag.sf.net";>

i used its compunent table as

                <d:table id="tableId">
                        <d:column title="ID">123</d:column>
                        <d:column title="Name">abc</d:column>
                        <d:column title="Comments">nocomment</d:column>
                </d:table>
but when i run my page instead of displaying a table it shows be just:
123 abc nocomment

when i viewed the page sourcecode in html (using view source in browser) i see 
that facelets just passed it as it was instead converting it into html i.e it 
had
<d:table id="tableId">
                        <d:column title="ID">123</d:column>
                        <d:column title="Name">abc</d:column>
                        <d:column title="Comments">nocomment</d:column>
                </d:table>
as its output.... (Note: i then removed all the libs for it and again deployed 
the application and again same results.

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4023515#4023515

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4023515
_______________________________________________
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to