Hi,
I am using the licenced version of Rad controls.
I have created a wizard using aspx pages.
on first page i have a combobox and next button. and on 2nd page i have a previous button. Previous button has code
"window.history.back(-1);" OnClientClicked event.
From first page I select item from combobox and click on next button. As a result request is redirected to 2nd page where i click on the previous button. So request is redirected to 1st page. And it shows the selected value in combobox.
But when i access the combobox selectedvalue it shows value at 0 index not the selected one.
Please suggest solution.
I'm thinking this is only something I need to worry about in my development environment, but I'd like to be sure, and if possible, find a way to supress the error.
If I have the page loaded with the Async Upload control on it, and I (1) make any change to the page, or (2) recycle the app pool, or (3) restart the application by changing the web.config, the next postback causes a huge alert window to open that shows the following:
RadUpload Ajax callback error. Source url returned invalid content:
<
html
>
<
head
>
<
title
>The resource cannot be found.</
title
>
<
style
>
body {font-family:"Verdana";font-weight:normal;font-size: .7em;color:black;}
p {font-family:"Verdana";font-weight:normal;color:black;margin-top: -5px}
b {font-family:"Verdana";font-weight:bold;color:black;margin-top: -5px}
H1 { font-family:"Verdana";font-weight:normal;font-size:18pt;color:red }
H2 { font-family:"Verdana";font-weight:normal;font-size:14pt;color:maroon }
pre {font-family:"Lucida Console";font-size: .9em}
.marker {font-weight: bold; color: black;text-decoration: none;}
.version {color: gray;}
.error {margin-bottom: 10px;}
.expandable { text-decoration:underline; font-weight:bold; color:navy; cursor:hand; }
</
style
>
</
head
>
<
body
bgcolor
=
"white"
>
<
span
><
H1
>Server Error in '/CABS_Dev' Application.<
hr
width
=
100
%
size
=
1
color
=
silver
></
H1
>
<
h2
> <
i
>The resource cannot be found.</
i
> </
h2
></
span
>
<
font
face
=
"Arial, Helvetica, Geneva, SunSans-Regular, sans-serif "
>
<
b
> Description: </
b
>HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly.
<
br
><
br
>
<
b
> Requested URL: </
b
>/CABS_Dev/Telerik.RadUploadProgressHandler.ashx<
br
><
br
>
<
hr
width
=
100
%
size
=
1
color
=
silver
>
<
b
>Version Information:</
b
> Microsoft .NET Framework Version:2.0.50727.4952; ASP.NET Version:2.0.50727.4955
</
font
>
</
body
>
</
html
>
<!--
[HttpException]: The file '/CABS_Dev/Telerik.RadUploadProgressHandler.ashx' does not exist.
at System.Web.UI.Util.CheckVirtualFileExists(VirtualPath virtualPath)
at System.Web.Compilation.BuildManager.GetVPathBuildResultInternal(VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile)
at System.Web.Compilation.BuildManager.GetVPathBuildResultWithNoAssert(HttpContext context, VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile)
at System.Web.Compilation.BuildManager.GetVPathBuildResult(HttpContext context, VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile)
at System.Web.UI.SimpleHandlerFactory.System.Web.IHttpHandlerFactory2.GetHandler(HttpContext context, String requestType, VirtualPath virtualPath, String physicalPath)
at System.Web.HttpApplication.MapHttpHandler(HttpContext context, String requestType, VirtualPath path, String pathTranslated, Boolean useAppConfig)
at System.Web.HttpApplication.MapHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
-->
../Telerik.RadUploadProgressHandler.ashx?RadUrid=ddbc8bc9-8901-4652-8b85-9c7590f67636
Did you register the RadUploadProgressHandler in web.config?
Please, see the help for more details: RadUpload for ASP.NET Ajax - Configuration - RadUploadProgressHandler.
We are evaluating Rad Editor (version 5) for MOSS. We have a custom theme for our site and after using the Rad Editor, we noticed that the styles are not the same as our theme. What my end result is that when ever a user adds this webpart to their site, and adds content, the fonts and styles would be the same fonts as our custom theme. I have read the documentation at http://www.telerik.com/support/kb/aspnet-ajax/sharepoint/populating-radeditor-s-apply-css-class-dropdown-with-custom-styles.aspx and followed these instructions, but it seems that when I add content to the page it does not follow the new CSS file that I created at /Program Files/Common Files/Microsoft Shared/web server extensions/wpresources/custom.css. I added this to my toolsfile.xml
<cssFiles> |
<item name="/_wpresources/Custom.css " /> |
</cssFiles> |
editor.fire(
"MediaManager"
);
editor._dialogOpener._dialogDefinitions.MediaManager
var
ImageManagerDefinitions = editor._dialogOpener._dialogDefinitions.ImageManager;
var
MediaManagerDefinitions = objectCloner(ImageManagerDefinitions)
MediaManagerDefinitions.Title =
"Media Manager"
;
editor._dialogOpener._dialogDefinitions.MediaManager = MediaManagerDefinitions;
Node 2:
How can i find if the parent node is check?
Here what i need to do!
If the user click item 1 and item 3 and click submit
He will recive a message that item 1 and item 3 is check
For that part i have no probleme
But if he check item 1 , item 2 and item 3 "all the item" then
He will receive a message that Node 1 is check
Any idea how can do this?
For the first part i am using something like this :
Dim nodeCollection As IList(Of RadTreeNode) = RadTreeView1.CheckedNodes
For Each node As RadTreeNode In nodeCollection
MsgBox()
Next