可以任何機構解釋我如何保存狀態的兩個列表框回發我使用這種jQuery我不知道什麼事件我應該做什麼或我可以保存視圖狀態或如何可以我使用hiddenField堅持兩個列表框中listBox和jquery
<script language="javascript" type="text/javascript">
$(document).ready(function() {
//If you want to move selected item from fromListBox to toListBox
$("#add").click(function() {
$("#"+'<%= fromListBox.ClientID %>'+" option:selected").appendTo("#"+'<%=toListBox.ClientID %>');
});
//If you want to move all item from fromListBox to toListBox
$("#addAll").click(function() {
$("#"+'<%= fromListBox.ClientID %>'+" option").appendTo("#"+'<%=toListBox.ClientID %>');
});
//If you want to remove selected item from toListBox to fromListBox
$("#remove").click(function() {
$("#"+'<%=toListBox.ClientID %>'+" option:selected").appendTo("#"+'<%= fromListBox.ClientID %>');
});
//If you want to remove all items from toListBox to fromListBox
$("#removeAll").click(function() {
$("#"+'<%=toListBox.ClientID %>'+" option").appendTo("#"+'<%= fromListBox.ClientID %>');
});
});
</script>
<asp:ListBox ID="fromListBox" runat="server" SelectionMode="Multiple" Height="150px" Width="150px" >
<asp:ListItem Text="Student Enrollment ID" Value="enrollment_no"></asp:ListItem> <asp:ListItem Text="Student Name" Value="first_name"></asp:ListItem> <asp:ListItem Text="Last Name" Value="last_name"></asp:ListItem> <asp:ListItem Text="Father Name" Value="father_name"></asp:ListItem>
</asp:Listbox>
<asp:ListBox runat="server" ID="toListBox" ></asp:ListBox>
remaiing代碼是這個 的 的 asp:ListItem> asp:ListItem> asp:ListItem> asp:ListItem> asp:ListItem> asp:ListBox> < asp:listBox> –
NoviceToDotNet
2010-08-13 13:40:45
我想持續兩個列表框的價值,當我鬆散它pleasse建議我一個適當的解決方案 – NoviceToDotNet 2010-08-13 13:42:15
你是否發現你的代碼片段可讀?我不。你應該考慮在每行的開始處使用4個空格,而不是用'>'來引用塊。出於同樣的可讀性原因,在評論部分中發佈大型代碼片斷也是無用的。我會鼓勵你繼續並編輯你的問題。 – 2010-08-13 13:42:58