PracticalRichfaces_chap8要点

1.<rich:pickList>
<rich:pickList value="#{pickList.fruitsList}">
...
</rich:pickList>
private String [] fruitsList = new String [] {"apple", "grapes"};
那"apple", "grapes"初始化的将出现在控制list右边

控制控件功能键名称
    copyAllControlLabel
    copyControlLabel
    removeControlLabel
    removeAllControlLabel

showButtonsLabel="false"将不出现label名称

2.<rich:orderingList>
Keep in mind that reordering is done on the client (the browser). The new order will be sent to the server only if the form is submitted. You’ll see how it’s done a little bit later.
注意<rich:orderingList>和<rich:dataOrderedList>不同

你可能感兴趣的:(apple)