or
| <telerik:RadScheduler ID="RadScheduler1" runat="server" DataEndField="dnp_bisdat" |
| DataKeyField="dnp_id" DataSourceID="sql_Source" |
| DataStartField="dnp_vondat" DataSubjectField="dat_name" |
| OverflowBehavior="Expand" SelectedView="TimelineView" |
| HoursPanelTimeFormat="htt" ValidationGroup="RadScheduler1" |
| ShowViewTabs="False" |
| Culture="de-DE" TimeZoneOffset="00:00:00" OnClientTimeSlotClick="TimeSlotClick"> |
| <TimelineView SlotDuration="00:15:00" StartTime="06:00" NumberOfSlots="60" |
| TimeLabelSpan="4" HeaderDateFormat="d" GroupBy="User" |
| GroupingDirection="Vertical" ColumnHeaderDateFormat="HH:mm" /> |
| <ResourceTypes> |
| <telerik:ResourceType DataSourceID="sql_user" |
| ForeignKeyField="dnp_usr_id" KeyField="usr_id" Name="User" |
| TextField="usr_name" /> |
| </ResourceTypes> |
| </telerik:RadScheduler> |
| function TimeSlotClick(sender, args) |
| { |
| alert(args.get_time()); |
| } |
| Protected Sub Page_Init(ByVal sender As Object, ByVal e As EventArgs) |
| Dim i As Integer = 0 |
| While i < CurrentDockStates.Count |
| Dim dock As RadDock = CreateRadDockFromState(CurrentDockStates(i)) |
| RadDockLayout1.Controls.Add(dock) |
| CreateSaveStateTrigger(dock) |
| System.Math.Max(System.Threading.Interlocked.Increment(i),i - 1) |
| End While |
| End Sub |
| Protected Sub Page_Init(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Init |
| Dim RoleID As Integer |
| Dim drContacts As SqlDataReader |
| Dim control As New Web.UI.Control() |
| Dim count As Integer = 0 |
| RadDockZone1.Controls.Clear() |
| RadDockZone0.Controls.Clear() |
| Dim state As New DockState() |
| Dim Edit As String = Utilities.GetSession("Edit Layout Allowed") |
| RoleID = Int32.Parse(Utilities.GetSession("PortalRoleID")) |
| drContacts = PortalDataAccess.GetPortalControlsByRoleID(RoleID) |
| If (drContacts.HasRows) Then |
| While (drContacts.Read()) |
| Dim soRadDock As New RadDock() |
| soRadDock.ID = drContacts("ControlID").ToString() |
| soRadDock.Title = drContacts("ControlTitle").ToString() |
| control = LoadControl("UserControls/" & drContacts("ControlName").ToString() & ".ascx") |
| soRadDock.ContentContainer.Controls.Add(control) |
| If drContacts("Zone") = 1 Then |
| CreateSaveStateTriggers(soRadDock) |
| soRadDock.ApplyState(state) |
| RadDockZone1.Controls.Add(soRadDock) |
| End If |
| If drContacts("Zone") = 0 Then |
| CreateSaveStateTriggers(soRadDock) |
| soRadDock.ApplyState(state) |
| RadDockZone0.Controls.Add(soRadDock) |
| End If |
| End While |
| drContacts.Close() |
| End If |
| End Sub |
Hi Telerik team,
I encountered the same problem as described in thread “Firefox 3, Tabstrip with ScrollChildren inside splitter”: my TabStrip is 10,000 px wide in Firefox 3.0.8. My Telerik DLL version is 2008.3.1314.35.
This value of 10.000 px is set in the CSS definition for selector '.RadTabStrip .rtsScroll', but FF3 ignores the 'overflow:hidden' defined for the outer HTML elements. I wonder if this can be fixed by altering some CSS definitions. Or must I use the JavaScript workaround you provided in the mentioned thread?