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?

I have a GridView which displays a variety of tooltips. Some are row level, some are cell specific, others are on template controls within a cell.
Without the RadToolTipManager, this works perfectly fine. The standard browser tooltip handler always shows the correct tooltip.
When I add the RadToolTipManager, the row tooltips take precedence over everthing else.
<telerik:RadToolTipManager ID="RadToolTipManager1" runat="server" AutoTooltipify="true" Sticky="true">
</telerik:RadToolTipManager>
So in the end all the other controls show tooltips correctly and all GridView row level tooltips show correctly but when a row has both cell, control and row tooltips together, the row (which is the less specific and lower precedence) tooltip always shows.
Is there a way to make this work the same way it would work normally? I want the look of the telerik tooltips and my skin but the functionality of the standard tooltip event handler for control precedence.
Is there a way to make a column with image draggable (when selecting the image with the mouse, and then start dragging)?
A normal GridBoundColumn is automatically draggable. But it doesn't seem to work well with other types of Columns.
I've tried a GridDragDropColumn (and increasing the image size, but unsuccessful).
I also tried a GridButtonColumn and a GridTemplateColumn.
Thanks,
Koen
