or
<
MasterTableView DataSourceID="sdsForeclosureNotice" DataKeyNames="ForeclosureID">
<CommandItemSettings ExportToExcelText="" ExportToPdfText="" /> these properties are no longer recognized
<RowIndicatorColumn>
<HeaderStyle Width="20px"></HeaderStyle>
</RowIndicatorColumn>
<ExpandCollapseColumn>
<HeaderStyle Width="20px"></HeaderStyle>
</ExpandCollapseColumn>
<Columns>
<telerik:GridTemplateColumn FilterControlWidth="100px" CurrentFilterFunction="Contains" ShowSortIcon="true" ShowFilterIcon="false" AutoPostBackOnFilter="true" HeaderButtonType="TextButton" DataField="colori_stampa" SortExpression="colori_stampa" HeaderText="Colori di stampa" UniqueName="colori_stampa"> <ItemTemplate> <asp:Label runat="server" ID="lbl_colori_stampa" Text='<%# Eval("colori_stampa") %>'></asp:Label> </ItemTemplate> <EditItemTemplate> <table width="300"> <tr> <td> <asp:Label runat="server" ID="lbl_colori_stampa_bianca" Text='Colori di stampa (bianca)'></asp:Label><br /> <telerik:RadListBox OnItemDataBound="Lb_colori_stampa_bianca_ItemDataBound" SelectionMode="Multiple" DataSourceID="SqlDataSourceColori" ID="Lb_colori_stampa_bianca" runat="server" CheckBoxes="true" DataKeyField="id" DataTextField="colore_stampa" DataValueField="codice_colore" Width="200px" Height="300px"> </telerik:RadListBox> </td> </tr> <tr> <td> <asp:Label runat="server" ID="lbl_colori_stampa_volta" Text='Colori di stampa (volta)'></asp:Label><br /> <telerik:RadListBox OnItemDataBound="Lb_colori_stampa_volta_ItemDataBound" SelectionMode="Multiple" DataSourceID="SqlDataSourceColori" ID="Lb_colori_stampa_volta" runat="server" CheckBoxes="true" DataKeyField="id" DataTextField="colore_stampa" DataValueField="codice_colore" Width="200px" Height="300px"> </telerik:RadListBox> </td> </tr> </table> </EditItemTemplate></telerik:GridTemplateColumn>| <telerik:RadListView ID="rlv_Aircraft" runat="server" |
| AllowMultiItemSelection="True" ClientDataKeyNames="name" |
| DataSourceID="SqlDataSource_Aircraft" Skin="Black" |
| DataKeyNames="name" > |
| <LayoutTemplate> |
| <div class="RadListView RadListView_Black"> |
| <table cellspacing="0" style="width:40px;"> |
| <tbody> |
| <tr ID="itemPlaceholder" runat="server"> |
| </tr> |
| </tbody> |
| </table> |
| </div> |
| </LayoutTemplate> |
| <ItemTemplate> |
| <tr class="rlvI"> |
| <td width="20px"> |
| <asp:Button ID="SelectButton" runat="server" CommandName="Select" |
| CssClass="rlvBSel" Text=" " /> |
| </td> |
| <td width="60px"> |
| <asp:Label ID="nameLabel" runat="server" Text='<%# Eval("name") %>' /> |
| </td> |
| <td> |
| </td> |
| </tr> |
| </ItemTemplate> |
| <AlternatingItemTemplate> |
| <tr class="rlvA"> |
| <td width="20px"> |
| <asp:Button ID="SelectButton" runat="server" CommandName="Select" |
| CssClass="rlvBSel" Text=" " /> |
| </td> |
| <td width="60px"> |
| <asp:Label ID="nameLabel" runat="server" Text='<%# Eval("name") %>' /> |
| </td> |
| <td> |
| </td> |
| </tr> |
| </AlternatingItemTemplate> |
| <EmptyDataTemplate> |
| <div class="RadListView RadListView_Black"> |
| <div class="rlvEmpty"> |
| There are no items to be displayed.</div> |
| </div> |
| </EmptyDataTemplate> |
| <SelectedItemTemplate> |
| <tr class="rlvISel"> |
| <td width="20px"> |
| <asp:Button ID="DeselectButton" runat="server" CommandName="Deselect" |
| CssClass="rlvBSel" Text=" " /> |
| </td> |
| <td width="60px"> |
| <asp:Label ID="nameLabel" runat="server" Text='<%# Eval("name") %>' /> |
| </td> |
| <td> |
| </td> |
| </tr> |
| </SelectedItemTemplate> |
| </telerik:RadListView> |