<
appSettings
>
<!-- Sets the skin for all RadControls to Hay -->
<
add
key
=
"Telerik.Skin"
value
=
"Hay"
/>
<add key="Telerik.Skin" value="Office2007" />
<add key="Telerik.Skin" value="Outlook" />
<add key="Telerik.Skin" value="Sunset" />
</
appSettings
>
Based on the product login page I pass a product type parameter to retrieve the correct appSettings value
for the entire product site. Has anyone done this. Basically it's using Polymorphism but I'd
like to know if someone has tackle this challenge with Telerik
Thank You
<
telerik:RadMenu
ID
=
"RadMenu1"
Runat
=
"server"
Flow
=
"Vertical"
Height
=
"115px"
Skin
=
"Web20"
style
=
"z-index: 0"
>
</
telerik:RadMenu
>
Hi
panelBar.set_cssClass() method doesn't seem to work on my project.
childItem =
new Telerik.Web.UI.RadPanelItem();
childItem.set_text(msgNoRecords);
childItem.set_cssClass(
"noDisplayClass");
...add item follows...
Am using this version: 2008.1.515.35
Any idea?
Thanks
mackey
<
telerik:RadTabStrip ID="tsPatientDemographics" runat="server" AutoPostBack="false" OnClientTabSelected="HighlightInitialTabField"
ScrollButtonsPosition="Right" MultiPageID="RadMultiPage1" BackColor="Gray" CausesValidation="False"
Align="Left">
function HighlightInitialTabField(sender, eventArgs) {
var selectedTab = eventArgs.get_tab();
if (selectedTab != null) {
var selectedTabValue = selectedTab.get_text();
if (selectedTabValue == "Patient") {
var HospAcctno = document.getElementById("HospAcctno");
HospAcctno.focus();
}
else if (selectedTabValue == "Guarantor") {
var GuarRelToPat = document.getElementById("GuarRelToPat");
GuarRelToPat.focus();
}
else if (selectedTabValue == "Pri Ins") {
var priInsCode = document.getElementById("priInsCode");
priInsCode.focus();
}
else if (selectedTabValue == "Sec Ins") {
var secInsCode = document.getElementById("secInsCode");
secInsCode.focus();
}
else if (selectedTabValue == "Ter Ins") {
var terInsCode = document.getElementById("terInsCode");
terInsCode.focus();
}
}
}
When I use the onblur client side event to set focus on a field with another function, it works fine using the same type of syntax above.
During debugging, I am positive that one of the "elses" are hit and it goes into trying to set focus.
Any reason why it doesn't work with the OnClientTabSelected event?