h:column id not working
Hi,
I tried set an ID on the <h:column> but it is not working, can someone please tell me what am I missing?
<h:column id="hello">
<h:outputText value="someText" />
</h:column>
thanks a lot!!
Hi,
I tried set an ID on the <h:column> but it is not working, can someone please tell me what am I missing?
<h:column id="hello">
<h:outputText value="someText" />
</h:column>
thanks a lot!!
Define "not working."
Hi RaymondDeCampo, thanks for the reply,
The problem is when i go to view source, I don't see the id="hello".
right now the view source give me the following
<table><tbody><tr><td>someText</td></tr></tbody>
and I want it to be
<table><tbody><tr><td id="hello">someText</td></tr></tbody>
thanks again.
The id of a column does not work that way. If it did, you would have conflicting ids when the table contains multiple rows.