Below queries relates to Batch Editing feature of the RadGrid (ASP.NET AJAX’s)
Scenario 1: In Image 1, 2 and 3, we are using ASP.NET AJAX’s dropdown list box within a ASP.NET AJAX’s Grid, this is the sample application provided by Telerik. The second one is cascading dropdown list box, when we select country in the first dropdown list box, it should fill all the states in the second dropdown list box of depending upon the country selected in the first dropdown list box. If you look at Image 1, you can see that we have “Asia” and “Asia – Japan”. In Image 2, a user changes the value from “Asia” to “Europe” but the values do not get filled in the second dropdown list box as you can see it is still showing “Asia-Japan”. When we click on the second drop down list box then only it fills the states of the country selected in the first dropdown list box and still showing the “Asia-Japan”.
Queries Set 1:
Scenario 2: In Image 4, we are using ASP.NET AJAX’s dropdown list box within a ASP.NET AJAX’s Grid. When we select Cargo Type dropdown list box, it first displays “Loading…” and then fill the list box with the actual values from the database/ object.
Query Set 2: We don’t want this “Loading…”, please provide us code to remove this feature.

<telerik:RadTextBox ID="txtSalution" Text='<%# Eval("salutation") %>' runat="server" Translate="false" AutoPostBack="false" ReadOnly="true" Width="70px" ReadOnlyStyle-Font-Bold="true" ReadOnlyStyle-Font-Size="10" ReadOnlyStyle-BackColor="#F0F0F0" />
<telerik:RadTextBox ID="txtSalution" Text='<%# Eval("salutation") %>' runat="server" Translate="false" AutoPostBack="false" ReadOnly="true" Width="70px" ReadOnlyStyle-Font-Bold="true" ReadOnlyStyle-Font-Size="10" ReadOnlyStyle-BackColor="#F0F0F0" HoveredStyle-Font-Bold="true" HoveredStyle-Font-Size="10" HoveredStyle-BackColor="#F0F0F0" />
function chkIfEmpty(parmtxt) { var rtxtBox = $find(parmtxt); var val = rtxtBox.get_element().value; if (!$.trim(val).length) { $('#imgaccept1').attr('style', 'display:none;'); $('#imgexclamation1').attr('style', 'display:block;'); $('#hfEingabeCheck').val('false') }}<telerik:RadTextBox ID="rtxtVermittlerName" runat="server" Label="Name" LabelWidth="100px" Width="350px" Skin="MetroTouch" EmptyMessage="Mustermann" onblur="chkIfEmpty('<%= rtxtVermittlerName.ClientID %>')"></telerik:RadTextBox> "parmtxt" is null.
if i write it directly like this: var rtxtBox = $find("<%= rtxtVermittlerName.ClientID %>");
it works.
What i'm doing wrong?
Thanks for reading.
Daniel
Hi everybody,
I just updated a VS 2012 project to Version 2013.1.220.35 where I use the AutoCompleteBox. Suddenly it ignores my DropDownItemTemplate and shows just the information from the DataTextField. I checked the demo and it looks the same. The Client-Side-Template seems to work fine, the Server-Side-Template not at all.
Does anyone have the same problem?
Best Regards
Denis
Hello I am very new to the telerik controls I am trying to change the radbox text in the page load event but it is not changing .
<radtextbox id="test" runat="server" > public void page_load() { test.Text= Session.PageCount.ToString(); }<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="input_size.aspx.vb" Inherits="Elan.Web.input_size" %><!DOCTYPE html><html><headrunat="server"><title></title></head><body><formid="form1"runat="server"><telerik:RadScriptManagerrunat="server"ID="ScriptManager1"/><div><telerik:RadButtonSkin="Metro"Text="Button"runat="server"ID="bTest"/><telerik:RadComboBoxSkin="Metro"runat="server"ID="dTest"/><telerik:RadTextBoxSkin="Metro"runat="server"ID="tTest"/><telerik:raddatepickerSkin="Metro"runat="server"ID="dtTest"/></div></form></body></html>