or
| <ItemTemplate> |
| <telerik:RadNumericTextBox ID="RadNumericTextBox_cost" Runat="server" |
| Culture="English (United Kingdom)" |
| Type="Currency" |
| Width="60px" Text='<%# Eval("cost") %>' MinValue="0" MaxValue="5500" |
| EnabledStyle-HorizontalAlign="Right" FocusedStyle-HorizontalAlign="Right"> |
| <FocusedStyle HorizontalAlign="Right" /> |
| <EnabledStyle HorizontalAlign="Right" /> |
| </telerik:RadNumericTextBox> |
| </ItemTemplate> |
| <ItemTemplate> |
| <telerik:RadNumericTextBox ID="RadNumericTextBox_cost" Runat="server" |
| Culture="English (United Kingdom)" |
| Type="Currency" |
| Width="60px" Text='<%# Eval("costAdjust") %>' MinValue="0" MaxValue="5500" |
| EnabledStyle-HorizontalAlign="Right" FocusedStyle-HorizontalAlign="Right"> |
| <FocusedStyle HorizontalAlign="Right" /> |
| <EnabledStyle HorizontalAlign="Right" /> |
| </telerik:RadNumericTextBox> |
| </ItemTemplate> |
| Dim costAdjust As RadNumericTextBox = (DirectCast(dg_detailRecovery.MasterTableView.Items(0).FindControl("RadNumericTextBox_cost"), RadNumericTextBox)) |
| costAdjust.Text = "<%# DataBinder.Eval(Container.DataItem, 'costAdjust') %>" |


//this.RadComboBox1.Items[0].Selected = false;
//this.RadComboBox1.SelectedValue = "";
//this.RadComboBox1.Item.Insert(0, new ListItem("--", ""));
//this.RadComboBox1.SelectedIndex = 0;
//this did not work
this.RadComboBox1.Items[0].Selected = false;
this.RadComboBox1.SelectedValue = "";
How can I get it box to load blank or insert blank line?
| <telerik:RadTab ID="tab3" runat="server" PageViewID="pvDR" Value="Report"> |
| <TabTemplate> |
| Design Report |
| <telerik:RadAjaxLoadingPanel id="lpReport" Runat="server" IsSticky="True"><asp:Image id="Image51" runat="server" AlternateText="Loading..." BorderWidth="0px" ImageUrl="~/global/images/loading.gif"></asp:Image></telerik:RadAjaxLoadingPanel> |
| </TabTemplate> |
| </telerik:RadTab> |