function clientFormCreated(sender, args) { var $ = $telerik.$; var mode = args.get_mode(); if (mode == Telerik.Web.UI.SchedulerFormMode.AdvancedInsert || mode == Telerik.Web.UI.SchedulerFormMode.AdvancedEdit) { //var rUpdButton = $telerik.findButton($("[id$='Form_UpdateButton']").attr("id")); //findButton not existing although it shows in intellisense var rUpdBJQueryObject = $telerik.$("[id$='Form_UpdateButton']"); var rUpdBRadButtonObject = $find(rUpdBJQueryObject.attr("id")); //always null var rSubject = $telerik.findTextBox($("[id$='Form_Subject']").attr("id")); rSubject.disable(); //works
I am using Telerik RadControls for ASP.NET Ajax version 2009.3.1103.20. When I mouse over an appointment in the RadScheduler, I get a Microsoft JScript runtime error: 'null' is null or not an object in the _onAppointmentMouseOver function. The problem is that the second call to getAppointmentFromDomElement (italiczed below) returns null ( 'j' is null ). It seems like a bug that we are making two calls to getAppointmentFromDomElement(). Is this a known problem? Is there a fix available?
_onAppointmentMouseOver:
function(l){if(this._resizingState.resizing||this._dragging){l.stopPropagation();
return
;
}
var k=this.getAppointmentDomElement(l.eventMapTarget);
var
j=this.getAppointmentFromDomElement(k);
var
n=(j.get_allowDelete()!=null)?j.get_allowDelete():this.get_allowDelete();
Hello,
I am working on a project with a RadGrid.
One column is a Date/DateTime type.
When I execute an “EqualTo” filter, even though I enter a full date and time value, the time disappears. Therefore, the filter
is executed just with the date value and does not give me the correct results.
Please see the following video:
[Video Link]
Here are my questions:
Thank you,
Daniel.
Have anyone experience same problem like me?
I have a MutiView, in one of the View it contains a UserControl, the UserControl contains a RadComboBox.
Then I have an RadWindow open with client script, once the RadWindow closed, it called the window onclose client script and do a postback to the RadAjaxPanel (it contains the MutiView).
So I can see the LoadingPanel it appears over the MutiView, but after the load, all combobox, panelbar inside the UserControl is like frozen, when I click on the combobox, it doens't popup the list, when I click on the PanelBar, it doesn't expands or minimize.
//Edit:
All other postback is working fine, i.e: Before postback from RadWindow, the RadComboBox is working fine, but after the postback from RadWindow client-onclose java script to trigger the AjaxResponse everything freeze...
The only solution I can think of is... instead of letting java script to trigger the AjaxResponse, I made another RadButton that has a server side OnClick event (hooked up to the event what AjaxResponse should triggers), then when RadWindow client-onclose, java script will trigger a client click on the RadButton so it will trigger the OnClick event.... In this case, it works fine.....
Thanks in advance.
King