Hi,
When using a ClientDataSource to populate a couple of drop downs I have a routine in the first one that on selected item changing it triggers the second one to update.
The issue I have is that if you change the first one again it doesn't update the second drop down, tracing it, it seems that it doesn't actually do anything with the clientdatasource even though the itemsrequested event fires once it is done (doing nothing!).
I am using the following code to trigger the update on the second combo.
Any suggestions? It is worth noting again that this works the first time, it is on the second update that it doesn't change the drop down.
Regards
Jon
child.clearItems();child.set_text('Loading');child.requestItems(null, false);<style type="text/css"> .RadScheduler_Sitefinity .rsMonthView .rsTodayCell { background: orange !important ; } /* formats each app item container in Month view */ .RadScheduler_Sitefinity .rsMonthView div.rsWrap { height: 20px !important; padding: 1px 0 1px 0 !important; } /* formats the actual label that appears in each app item container in Month view */ .RadScheduler_Sitefinity .rsMonthView div.rsApt { height: 20px !important; overflow: hidden; } </style><telerik:RadScheduler CustomAttributeNames="resourceLabelColour,eventID" ID="RadScheduler1" runat="server" OnClientAppointmentClick="viewAppInfo" DataEndField="appEndTime" DataKeyField="appID" DataSourceID="SqlDataSource1" DataStartField="appStartTime" DataSubjectField="appSubject" height="1000px" Skin="Sitefinity"> </telerik:RadScheduler>Me.RadScheduler1.SelectedDate = DateTime.Now Me.panelFilter.Width = Unit.Percentage(100) Me.RadScheduler1.SelectedView = SchedulerViewType.MonthView Me.RadScheduler1.MonthView.VisibleAppointmentsPerDay = 6 'Me.RadScheduler1.MonthView.MinimumRowHeight = 6 'Me.RadScheduler1.MonthView.AdaptiveRowHeight Me.RadScheduler1.FirstDayOfWeek = DayOfWeek.Monday Me.RadScheduler1.LastDayOfWeek = DayOfWeek.Sunday Me.RadScheduler1.TimelineView.UserSelectable = False Me.RadScheduler1.ReadOnly = False Me.RadScheduler1.AllowEdit = False Me.RadScheduler1.AllowDelete = FalseWhen i right click on the table inside the editor contetn area and select table properties/cell properties. i receive this error
Table Wizard Unknown server tag 'dc:TableLayouts'.

see the attachment....
Radscheduler not displaying correctly on first time run.
I didn't give any height or width to the scheduler.
If again I reload or postback the page, It would be perfect.
How do I Solve it...
I have a grid inside a content placeholder in a masterpage. The css for the parent div of the grid is set to overflow-x:auto, so the grid scrolls horizontally. I added an ajax loading panel and set the ScrollBars property to auto, but the loading panel still overflows the grid container element. it begin at the beginning of the container element where the grid begins but it goes all the way to the end of the page.
How can I get the loading panel to stay within the width of the grid's container div?
Hi, I have a problem with a raddock, when a postback occurs, it changes its position, goes to the left of the page.
How can i resolve the issue?
Thanks
I'm creating a graph with multiple LineSeries - the X axis is of DateType. There are only a few dates (right now I'm testing with 4: 01/01/2013, 01/01/2014, 01/01/2015, 01/01/2016). If I have 8 series - the graph will render but if my number of series is higher (say 20) - it will crash on both Chrome and IE.
If I keep my high number of series and now limit my date range to within a single year but have many dates (say I partition that year by month into 12 DateTime items on the X axis) - it renders correctly and quickly. This doesn't seem to make sense as there is more data here!
I'm creating binding a DataTable where I create a new column per series. Appreciate some advice on what might be causing this and how to resolve it - thanks.