<telerik:RadWindow ID="StudentCheckListWindow" runat="server" Modal="True" AutoSize="true" EnableShadow="true" Behaviors="Close" ReloadOnShow="true"> If the item is clicked in the RadWindow before any RegisterStartupScript is called everything is fine. Also, if I run something RegisterStartupScript and then do a full page postback and then open the window everything is fine. It's almost like RegisterStartupScript is changing the page DOM and then the RadWindow is throwing an error which is fixed by a full postback.
My code block looks something like:
ScriptManager.RegisterStartupScript(Page, this.GetType(), "RedirectScript", "window.open('" + redirect + "');", true);If (e.CommandName = RadGrid.InitInsertCommandName) Then
'cancel the default operation
e.Canceled = True
'Prepare an IDictionary with the predefined values
Dim newValues As System.Collections.Specialized.ListDictionary = New System.Collections.Specialized.ListDictionary()
newValues("plantID") = Session("PlantID")
'Insert the item and rebind
e.Item.OwnerTableView.InsertItem(newValues)
End If
When I go to add a new record there is a textbox with the correct session value for plantID in there and the value inserts ok...
What I want to do though is hide this text box when the grid is in edit mode - but I can't seem to do it without forcing the column to be read only - which obviously defeats the object...
Is there a way of using the default insert value as above but not displaying the textbox in edit mode?
Thanks in advance for any help...
Can anyone one share any idea
which version of telerik(asp.net ajax) is compatible with asp.net 3.5 and also pls share any path to get trail version for the same
For Each node In RadTreeViewTCs.GetAllNodes If node.Checked = True Then 'Do Some Stuff Here ElseIf node.Checked = False Then Dim Value As New RadListBoxItem Dim Content As New RadEditor Content.Content = node.Text.ToString Content.Width = "150" Content.Height = "75" Value.Controls.Add(Content) ListBoxExcludedTCS.Items.Add(Value) End If Next node ListBoxExcludedTCS.DataBind() <telerik:RadFileExplorer ID="expTest" runat="server" VisibleControls="All" Configuration-ViewPaths="~/Images" DisplayUpFolderItem="true" EnableCopy="true" EnableCreateNewFolder="true" Skin="Black" Configuration-UploadPaths="~/Up" EnableOpenFile="true" OnClientItemSelected="itemChosen"><Configuration ViewPaths="~/Images" SearchPatterns="*.*" UploadPaths="~/Up"></Configuration> </telerik:RadFileExplorer>
RadMultiPage
multiPage = (RadMultiPage)Page.Master.FindControl("ContentPlaceHolder1").FindControl("radmultipagePayment");
RadMultiPage
multiPage = (RadMultiPage)Page.Master.FindControl("ContentPlaceHolder1").FindControl("radmultipageCheckOut").FindControl("radmultipagePayment");
It fails to find the initial multipage so the line fails.
Ideas?