Hi,
I am using the radinput manager with the "<Validation IsRequired="True" />" property to force certain textboxs to be required.
This works well displaying a warning symbol on the relevant textbox and a red outline if the box is left empty.
My issue is I also have a combobox with a required field validator, but this doesn’t indicate the input has no value selected in the same style as the other textbox controls giving an inconsistent interface.
Could this functionality be added to the standard combobox (obviously only IsRequired functionality) or full functionality if using a RadCombobox as this effectively contains a textbox.
Hi
http://demos.telerik.com/aspnet-ajax/menu/examples/functionality/templates/defaultcs.aspx for this demo is possible for sub menu ? Can you give some example ?
<
telerik:RadAjaxPanel
ID
=
"radPanel"
runat
=
"server"
HorizontalAlign
=
"NotSet"
LoadingPanelID
=
"radLoadingPanel"
>
<
asp:DropDownList
ID
=
"ddlTierID"
runat
=
"server"
DataSourceID
=
"BusinessUnitTypesDataSource"
DataTextField
=
"Name"
DataValueField
=
"RowID"
TabIndex
=
"7"
>
</
asp:DropDownList
>
</
telerik:RadAjaxPanel
>
<
asp:UpdatePanel
UpdateMode
=
"Conditional"
runat
=
"server"
>
<
Triggers
>
<
asp:AsyncPostBackTrigger
ControlID
=
"ddlUserRole"
EventName
=
"SelectedIndexChanged"
/>
</
Triggers
>
<
ContentTemplate
>
<
asp:DropDownList
ID
=
"ddlTierID"
runat
=
"server"
DataSourceID
=
"BusinessUnitTypesDataSource"
DataTextField
=
"Name"
DataValueField
=
"RowID"
TabIndex
=
"7"
>
</
asp:DropDownList
>
</
ContentTemplate
>
</
asp:UpdatePanel
>
<
script
type
=
"text/javascript"
>
function pageLoad()
{
$get('<%=txtUserName.ClientID %>').focus();
}
</
script
>
Hello Everyone,
Can anyone suggest how to highlight the dropdown options upon mouse over. By default, I see a grey color highlighted when I hover on any of the options in the Dropdownlist. Please refer to the screenshot attached.
I would like to change the default color (grey) and give some brighter color for more visibility.
Here are the additional detailsASP.NET version - Visual Studio 2013 Version 12.0
OS - Windows 8
exact browser version - IE >= 10
exact version of the Telerik product = 2009.1.527.35
preferred programming language = C#
Thanks in Advance!!
Kumar
Browser - safari version: 9.0.2 (11601.3.9)
Operation System os version: OS X EI Captain version 10.11.2
I have a combobox, which uses treeview to show the data.
When I click on combo box I get the following error
Failed to load resource: Could not connect to the server.
_initRightToLeftScriptResource.axd:8396TypeError: null is not an object (evaluating 'c.set_additionalQueryString')
_initRightToLeftScriptResource.axd:8395
initializeScriptResource.axd:8332
endUpdateTelerik.Web.UI.WebResource.axd:2:49050
endCreateComponentsTelerik.Web.UI.WebResource.axd:2:63458
_raiseInitTelerik.Web.UI.WebResource.axd:2:65559
_doInitializeTelerik.Web.UI.WebResource.axd:2:63974
(anonymous function)Telerik.Web.UI.WebResource.axd:2:65784
(anonymous function)Telerik.Web.UI.WebResource.axd:2:50713
pTelerik.Web.UI.WebResource.axd:2:558
_2PassTelerik.Web.UI.WebResource.axd:2:50697
FTelerik.Web.UI.WebResource.axd:2:1539
dTelerik.Web.UI.WebResource.axd:2:1898
cTelerik.Web.UI.WebResource.axd:2:1294
http://server/Ticketing/jquery.min .map Failed to load resource: the server responded with a status of 404 (Not Found)
hi
I am applying a background color to all grid using this;
<style type="text/css">
.RadGridHeaderStyle
{
background-color:#5e9cd2 !important;
background-image:none !important;
font-weight:bold !important;
color:white !important;
}
</script>
The header background color work fine but the font color on some columns don't seems to apply. I realised that it is because the column is sortable and the color won't change to white. How should make the sortable header font color to white? Thanks