Hi,
We are using RadEditors Enabled property to turn on and off the control. With the new Q3 2013 update this does no longer work and we getting the following error "Sys.ArgumentException: Value must not be null for Controls and Behaviors".
Currently we have found the following workaround:
//reNotesSystem.Enabled = !readOnly; // Does not work with Telerik Q3 2013!!!//reNotesStation.Enabled = !readOnly;if (readOnly){ reNotesStation.EditModes = EditModes.Preview; reNotesSystem.EditModes = EditModes.Preview; reNotesStation.ToolbarMode = EditorToolbarMode.ShowOnFocus; reNotesSystem.ToolbarMode = EditorToolbarMode.ShowOnFocus;}else{ reNotesStation.EditModes = EditModes.All; reNotesSystem.EditModes = EditModes.All; reNotesStation.ToolbarMode = EditorToolbarMode.Default; reNotesSystem.ToolbarMode = EditorToolbarMode.Default;}The work arround is not optimal and we would like to have the old behaviour back.
Kind regards
Robert Warnestam



Dim btn_PopupAccept1 As New Button() Private Sub Page_Init(sender As Object, e As EventArgs) Handles Me.Init With btn_PopupAccept1 .Text = "Accept" End With AddHandler btn_PopupAccept1.Click, AddressOf btn_PopupAccept1_Click End Sub Protected Sub RadTreeView1_NodeClick(sender As Object, e As Telerik.Web.UI.RadTreeNodeEventArgs) Handles RadTreeView1.NodeClick Dim myLabel As Label = New Label() Dim myTextBox As TextBox = New TextBox() Dim myRadio As RadioButton = New RadioButton() Dim myCheckBox As CheckBox = New CheckBox() Dim spacer As LiteralControl = New LiteralControl(" ") Dim br As LiteralControl = New LiteralControl("<br />") Dim DivStart As LiteralControl = New LiteralControl("<div style=""padding:15px;""") Dim DivEnd As LiteralControl = New LiteralControl("</div>") myLabel.Text = "Control " & e.Node.Text myLabel.ID = "lbl_PopupControl" & e.Node.Value myTextBox.TextMode = TextBoxMode.Number myTextBox.ToolTip = "numeric" RadWindow1.VisibleOnPageLoad = True RadWindow1.ID = "RadWindow1" RadWindow1.Width = 500 RadWindow1.Height = 300 RadWindow1.Modal = True RadWindow1.CenterIfModal = True RadWindow1.ContentContainer.Controls.Add(DivStart) RadWindow1.ContentContainer.Controls.Add(myLabel) RadWindow1.ContentContainer.Controls.Add(spacer) RadWindow1.ContentContainer.Controls.Add(myTextBox) RadWindow1.ContentContainer.Controls.Add(br) RadWindow1.ContentContainer.Controls.Add(btn_PopupAccept1) RadWindow1.ContentContainer.Controls.Add(DivEnd) End Sub Protected Sub btn_PopupAccept1_Click(sender As Object, e As EventArgs) Dim script As String End Sub<table cellpadding="0" cellspacing="0" class="auto-style1"> <tr> <td class="auto-style2"> <telerik:RadTreeView ID="RadTreeView1" Runat="server"> </telerik:RadTreeView> </td> <td> <telerik:RadWindowManager ID="RadWindowManager1" runat="server"> </telerik:RadWindowManager> <telerik:RadWindow ID="RadWindow1" runat="server"> </telerik:RadWindow> </td> </tr> </table>function rowSelected(sender, args) { UserID = getDataItemKeyValue(sender, args.get_gridDataItem()); currentRowIndex = args.get_gridDataItem().get_element().rowIndex; $find("<%= RadTabStrip1.ClientID %>").set_selectedIndex(0); MyWebService.GetUserByUserID(UserID, setValues)}<telerik:RadScriptManager ID="ScriptManager1" runat="server"> <Services> <asp:ServiceReference Path="MyWebService.asmx" /> </Services></telerik:RadScriptManager>
but I will got error in JavaScript,MyWebService is undefined
I also tried
RadScriptManager.GetCurrent(this).Services.Add(new ServiceReference(ResolveUrl("MyWebService.asmx")));
but also the same.
Could somebody help me?
I use Windows 8.1,Visual Studio 2012 Professional,SQL Server 2014.
And browser is IE 11.
<telerik:RadNumericTextBox ID="PriceInclTaxTextBox" runat="server" Value='<%# Convert.ToDecimal(Eval("PriceInclTax")) %>' NumberFormat-DecimalDigits="4"></telerik:RadNumericTextBox>
I am using the PivotGrid to connect to the cube. But unless I give permission to Everyone, I can’t connect to the cube using the domain account I have.
Here is how I set it up:
<OlapSettings ProviderType="Adomd">
<AdomdConnectionSettings Cube="FCube"
DataBase="FirstCube"
ConnectionString="Data Source=XXX;Catalog=FirstCube;User Id=xxx\xxx;password=xxxx;">
</AdomdConnectionSettings>
</OlapSettings>
Please let me know what I should do.