I have some custom filtering on a grid I'm doingwith comboboxes and AJAX. Each combobox is linked to the grid the the rad ajaxmanager like so:
<telerik:AjaxSetting AjaxControlID="ddlXXX">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="grid1" LoadingPanelID="RadAjaxLoadingPanel1"/>
</UpdatedControls>
</telerik:AjaxSetting>
I'm calling a GetDate() method that returns a data table to bind the grid to the data source in the page_prerender event. All works well, except for when I uncheck a checkbox in the combobox. If I check a checkbox it causes the post back and the GetData() method is called, but if I uncheck a checkbox the GetData() method is never called and the filtering isnt refreshed. Am I missing something in the Page LifeCycle? Why wouldn't the Page_PreRender event be called when I uncheck a checkbox inside a combobox? Should the DataBind be called at another point in the page's lifecycle?
Hi all,
In RadGrid when the Virtualization feature is enabled and ocurres a postback the Grid scrolls to top even if the SaveScrollPosition property is set to True. This behavior can be reproduced in Demo page: http://demos.telerik.com/aspnet-ajax/grid/examples/performance/virtualization/defaultcs.aspx following these steps:
This is a bug? There's any workaround to solve this issue?
Regards!
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 = False
When 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