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!!

[241 byte] By [ChenChaoa] at [2007-11-27 11:42:32]
# 1

Define "not working."

RaymondDeCampoa at 2007-7-29 17:44:41 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2

Hi RaymondDeCampo, thanks for the reply,

The problem is when i go to view source, I don't see the id="hello".

ChenChaoa at 2007-7-29 17:44:41 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 3

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.

ChenChaoa at 2007-7-29 17:44:41 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 4

The id of a column does not work that way. If it did, you would have conflicting ids when the table contains multiple rows.

RaymondDeCampoa at 2007-7-29 17:44:42 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...