Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
<telerik:RadComboBox ID="ddlCustomerName"
runat="server"
Width ="300px"
AllowCustomText="false"
HighlightTemplatedItems="true"
EnableLoadOnDemand="true"
OnItemsRequested="ddlCustomerName_ItemsRequested"
MarkFirstMatch="true"
AutoPostback="true">
</telerik:RadComboBox>
On Page Load
btnSubmit.Attributes.Add(
"OnClick", "return fn_Validation('" & TH1.Customer.ClientID "' );") In aspx page Javascript in the aspx page
function
fn_Validation(Customer)
{
if(document.getElementById(Customer).selectedIndex==0)
alert(
'Please select a Customer Name to proceed further')
document.getElementById(Customer).focus();
return false;
} } Registered the user control in the aspx as
<%
@ Register TagPrefix="uc" TagName="TestHeader" Src="~/UserControl/ParameterSetHeader.ascx" %> Kindly help.