Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
ASP 1.23 KB | None | 0 0
  1. <obout:ListBox runat="server"  ID="GroupsListBox" Width="200" Height="400"
  2.         DataSourceID="SqlDataSource1" DataTextField="GroupName" DataValueField="GroupId"
  3.         FolderStyle="interface/styles/premiere_blue/OboutListBox">
  4. <Details>
  5.             <obout:ListBox runat="server" ID="ReportsListBox" Width="500" Height="400" OnLoadingItems="Detail_LoadingReports"
  6.                 OnItemCreated="Detail_ItemCreated" OnItemDataBound="Detail_ItemDataBound"
  7.                 DataSourceID="SqlDataSource2" DataTextField="ReportName" DataValueField="ReportId" EnableLoadOnDemand="true">
  8.                     <ItemTemplate>
  9.                         <div class="item">
  10.                             <span>
  11.                                 <asp:checkbox runat="server" id="ReportCheckBox" Checked="<%# Bind("Enabled") %>" />
  12.                             </span>
  13.                             <div class="label">
  14.                                 <%#Eval("ReportName")%>
  15.                             </div>
  16.                         </div>
  17.                     </ItemTemplate>
  18.                     <HeaderTemplate>Reports</HeaderTemplate>
  19.             </obout:ListBox>
  20.         </Details>
  21.         <HeaderTemplate>Report Groups</HeaderTemplate>
  22. </obout:ListBox>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement