.RadTabStrip
.rtsLevel1 .rtsLink
{
background-image: url('TabStrip/office2007.gif');
background-color: transparent;
background-repeat: no-repeat;
}
on running, the application appears as in the attached file, with the text running out of the tab shape. Is there any solution to this?
<telerik:RadPanelBar id="rpbMyCalendars" runat="server" width="220px" ExpandMode="MultipleExpandedItems"PersistStateInCookie="true" CookieName="xyzMyCalendarPanelBarCookie"/>protected void testLoad(){ rpbMyCalendars.Items.Clear(); createPanel(1, 8); createPanel(2, 8);}protected void createPanel(int panelNum, int count){ var rpiRoot = new RadPanelItem("Root Panel " + panelNum); rpbMyCalendars.Items.Add(rpiRoot); for (var i = 1; i < count; i++ ) { var rpiSub = new RadPanelItem(""); rpiRoot.Items.Add(rpiSub); var literal = new Literal { Text = "<div title='Sub Panel " + i + "'>Sub Panel " + i + "</div>", ID = "tx_" + i, }; rpiSub.Controls.Add(literal); var cp = new RadColorPicker { ID = "cp_" + i, ShowIcon = true, SelectedColor = Color.FromArgb(i * 0x100 + i * 0x10 + i), PaletteModes = PaletteModes.HSB, AutoPostBack = true }; cp.ColorChanged += cpMyCalendar_OnColorChanged; rpiSub.Controls.Add(cp); }}<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage" %><%@ Register Assembly="RadSchedulerDemo" Namespace="RadSchedulerDemo.Helpers" TagPrefix="cc1" %><%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %><script runat="server"> //needed to run RadScheduler without <form> tag public override void VerifyRenderingInServerForm(Control control) { //base.VerifyRenderingInServerForm(control); }</script><asp:Content ID="Content1" ContentPlaceHolderID="TitleContent" runat="server"> Index</asp:Content><asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server"> <telerik:RadScriptManager runat="server" ID="RadScriptManager1"> </telerik:RadScriptManager> <!-- to allow for user authentication, a custom control needed to be created to handle the ASPXAUTH cookie during the GetResources call. see and relevant code in Helpers\MyScheduler.cs --> <cc1:MyScheduler ID="MyScheduler1" runat="server" SelectedView="WeekView" StartInsertingInAdvancedForm="true" AppointmentStyleMode="Default" StartEditingInAdvancedForm="true"> <AdvancedForm Enabled="true" Modal="true" /> <WebServiceSettings Path="~/SchedulerService" ResourcePopulationMode="ServerSide" UseHttpGet="false" /> </cc1:MyScheduler></asp:Content>GetAppointments from SchedulerProviderBase in my implementation of the WebServiceAppointmentControllerpublic override IEnumerable<Appointment> GetAppointments(RadScheduler owner) { List<Appointment> list = new List<Appointment>(); AppointmentDS.SchedarioDataTable dt = null; DateTime star; DateTime end; Dictionary<DateTime, List<Appointment>> dic = new Dictionary<DateTime, List<Appointment>>(); int ora = 9; int cont = 0; try { dt = dal.getSchedarioDT(DateTime.Today, DateTime.Today.AddDays(-7), DateTime.Today.AddDays(7)); foreach (AppointmentDS.SchedarioRow row in dt) { Appointment item = owner.CreateAppointment(); item.ID = row.STR_Id; if (row.IsTIS_NomeNull()) item.Subject = ""; else item.Subject = row.TIS_Nome; star = new DateTime(row.PST_DataScadenza.Year, row.PST_DataScadenza.Month, row.PST_DataScadenza.Day,0,0,0); end = new DateTime(row.PST_DataScadenza.Year, row.PST_DataScadenza.Month, row.PST_DataScadenza.Day, 0, 0, 0); item.Start = star.ToUniversalTime(); item.End = end.ToUniversalTime(); item.BackColor = System.Drawing.Color.Yellow; item.CssClass = "testtest"; list.Add(item); }
} catch (Exception ex) { throw; } return list; }item.BackColor = System.Drawing.Color.Yellow;
But it don't take effect in the View.
Samebody can help me please?
Thanks a lot
function keyboardActions(event) { if (event.keyCode == 13) { eval($("#<%=btnSearch.ClientID %>").trigger('click')); // Doesn't work with RadButton Q3.2010 return false; } // other keypressed other actions ?}// If the client press ENTER, the Search button is clicked.$(document).ready(function () { if ($.browser.mozilla) { $("#<%=txtName.ClientID %>").keypress(keyboardActions); $("#<%=txtCode.ClientID %>").keypress(keyboardActions); } else { $("#<%=txtName.ClientID %>").keydown(keyboardActions); $("#<%=txtCode.ClientID %>").keydown(keyboardActions); }});Hello,
I am displaying several RadSliders within a RadListView inside of a 'load on demand' RadTabStrip, and I am getting a rendering issue with the RadSlider on all browsers.
After my ‘compatibility’ tab loads the RadSliders look as you see them in ImageA. You will notice that I have placed one test RadSlider outside of the RadListView which also displays incorrectly.
If I click on my ‘profile’ tab and then back to my ‘compatibility’ tab the RadSliders will display correctly and as expected in ImageB.
Does anyone know how to correct this issue?
Best regards,
~Dean
dataComboBox.SelectedIndexChanged += new RadComboBoxSelectedIndexChangedEventHandler(this.dataComboBox_SelectedItemChanged);