請任何人都可以解釋這個標籤中佈局屬性代表什麼?什麼是佈局屬性在JSF標籤中的含義?
<h:selectOneRadio value="" layout="pageDirection" border="1">
<f:selectItem itemLabel="red" itemValue="1" />
<f:selectItem itemLabel="white" itemValue="2" />
</h:selectOneRadio>
謝謝。
請任何人都可以解釋這個標籤中佈局屬性代表什麼?什麼是佈局屬性在JSF標籤中的含義?
<h:selectOneRadio value="" layout="pageDirection" border="1">
<f:selectItem itemLabel="red" itemValue="1" />
<f:selectItem itemLabel="white" itemValue="2" />
</h:selectOneRadio>
謝謝。
看到這個問題:layout with h:selectoneradio。
基本上,JSF可以按水平排列單選按鈕layout="lineDirection"
或垂直排列layout="pageDirection"
。
這是<h:selectOneRadio>
的參考資料。
複選框和按鈕可以設置爲在當前行(layout =「lineDirection」)上彼此相鄰或垂直堆疊,每行之後都有換行符(layout =「pageDirection」)。
由於組件正在爲您編寫一堆HTML,因此這隻會影響它的工作方式。
謝謝@TimHowland – serabile 2013-03-25 22:33:20