how to move listview from one div to another div when a checkbox is checked

muncher

New Member
i have the following scenario.....i have listviews with checkbox in the one div Issues \[code\] <br /> <br /> </fieldset> </LayoutTemplate> <ItemTemplate> <div style="width:200px; height:165px; -webkit-border-radius: 20px;-moz-border-radius: 20px; border-radius: 20px; border:2px solid black; background-color:#00FFFF; text-align:center; margin-top:20px; margin-bottom:10px; margin-left:20px; "> <br /> <div style=" width:190px; height:auto; font-size:small;color:#000099; text-align:left; margin-left:12px;"><%#Eval("Worked_Project")%> &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; <asp:CheckBox ID="CheckBox1" runat="server" /></div> <div style="width:190px; height:auto; font-size:small;color:black;text-align:center; padding-left:2px; margin-left:5px;" ><%# DataBinder.Eval(Container.DataItem, "Week_Ending", "{0:d/M/yyyy }")%></div> <div style=" width:190px; height:75px; font-size:large; color:#000099; text-align:center; "><%#Eval("Activity")%> </div> <div style=" width:190px; height:auto; font-size:small;color:black; text-align:left; margin-left:12px; margin-bottom:5px; "><%#Eval("UserId")%> </div> </div> </ItemTemplate> <AlternatingItemTemplate> <div style="width:200px; height:165px; -webkit-border-radius: 20px;-moz-border-radius: 20px; border-radius: 20px; border:2px solid black; background-color:#00FFFF; text-align:center; margin-top:20px; margin-bottom:10px; margin-left:20px; "> <br /> <div style=" width:190px; height:auto; font-size:small;color:#000099; text-align:left; margin-left:12px;"><%#Eval("Worked_Project")%> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; <asp:CheckBox ID="CheckBox1" runat="server" /></div> <div style="width:190px; height:auto; font-size:small;color:black;text-align:center; padding-left:2px; margin-left:5px;" ><%# DataBinder.Eval(Container.DataItem, "Week_Ending", "{0:d/M/yyyy }") %></div> <div style=" width:190px; height:75px; font-size:large; color:#000099; text-align:center; "><%#Eval("Activity")%> </div> <div style=" width:190px; height:auto; font-size:small;color:black; text-align:left; margin-left:12px; margin-bottom:5px; "><%#Eval("UserId")%> </div> </div> </AlternatingItemTemplate> <EditItemTemplate> </EditItemTemplate> </telerik:RadListView> <asp:SqlDataSource SelectCommand="SELECT ID, Week_Ending, Worked_Project, Activity , UserId FROM weeklyrepUser_Super WHERE Type=@Type" ConnectionString="<%$ ConnectionStrings:weekprojectConnectionString %>" ID="SqlDataSource_subentry" runat="server" OldValuesParameterFormatString="original_{0}" ConflictDetection="CompareAllValues" > <SelectParameters> <asp:Parameter Name="Type" Type="String" DefaultValue="http://stackoverflow.com/questions/13787450/Issues" /> </SelectParameters> </asp:SqlDataSource>\[/code\]i want to move the list view form the one div to the another div under one condition that when we check the checkbox in the listview and click button.....plz help me out........plzzzz
 
Back
Top