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
Once I drag an item from one RadListBox to the TransferTo RadListBox, I want the item I just moved defaulted to selected in the TransferTo RadListBox. So when I drage a group from AllGroupsRadListBox into SharedGroupsRadListBox, I want the SharedGroupsRadListBox copy of the group to be selected so that the user can then do what he/she needs to do with the Group they just copied without having to then click on it again (my users are very click averse and quite vocal about it).<telerik:RadListBox runat="server" ID="AllGroupsRadListBox" Height="200px" Width="200px" AllowTransfer="true" SelectionMode="Single" TransferToID="SharedGroupsRadListBox" EnableDragAndDrop="true" OnClientSelectedIndexChanged="AllGroupsRadListBox_SelectedIndexChanged" /><telerik:RadListBox runat="server" ID="SharedGroupsRadListBox" Height="200px" Width="200px" /><br />Users in selected group:<br /><telerik:RadListBox runat="server" ID="UsersRadListBox" Height="200px" Width="200px" />private void FillAllGroups(){ BWGroups allGroups = new BWGroups(); allGroups.GetAllBWGroups(); AllGroupsRadListBox.DataTextField = "BWGroupName"; AllGroupsRadListBox.DataValueField = "BWGroupID"; AllGroupsRadListBox.DataSource = allGroups.BWGroupList; AllGroupsRadListBox.DataBind();} protected void AllGroupsRadListBox_SelectedIndexChanged(object sender, EventArgs e){ int parseGroupId = -1; Int32.TryParse(AllGroupsRadListBox.SelectedValue.ToString(), out parseGroupId); BWUsers usersInGroup = new BWUsers();if(parseGroupId > 0) usersInGroup.GetActiveBWUsersByGroupID(parseGroupId); UsersRadListBox.DataTextField = "BWGroupName";UsersRadListBox.DataValueField = "BWGroupID";UsersRadListBox.DataSource = usersInGroup.BWUserList;UsersRadListBox.DataBind();}