| Dim closeDock As New DockCommand() |
| closeDock.OnClientCommand = "PromptRemoveDock" |
| closeDock.AutoPostBack = True |
| closeDock.Name = "Close" |
| closeDock.Text = "Remove" |
| closeDock.CssClass = "DockCloseCommand" |
| dock.CommandsAutoPostBack = True |
| dock.Commands.Add(closeDock) |
| AddHandler dock.Command, AddressOf Dock_Command |
| function PromptRemoveDock(sender, eventArgs) |
| { |
| if (confirm('Remove "' + sender.get_title() + '"?')) |
| { |
| sender.set_closed(true); |
| } |
| else |
| { |
| eventArgs.set_cancel(true); |
| } |
| } |
| Dim closeCommand As DockCloseCommand |
| closeCommand = New DockCloseCommand |
| closeCommand.AutoPostBack = True |
| closeCommand.OnClientCommand = "PromptRemoveDock" |
| dock.Commands.Add(closeCommand) |
| AddHandler dock.Command, AddressOf Dock_Command |
Hi,
When I attempt to use the CAPTCHA control with Virtual Directory website, the captcha image path is not ok and the image is not displayed. I don't have the same problem when I create a regular IIS website (using the same home directory...).
I registered the httpHandler in my web.config as follows:
<httpHandlers>
<add path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" verb="*" validate="false" />
</httpHandlers>
<handlers>
<add name="Telerik_Web_UI_WebResource_axd" verb="*" preCondition="integratedMode" path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" />
</handlers>
Any suggestions?
Thanks.
| <my:Comment |
| class=comment |
| commentValue="comment text for arrested">ARRESTED |
| </my:Comment> MAN FOUND IN DITCH |
| var oSel = editor.getSelectedElement(); |
| if (confirm("Are you sure you wish to remove this comment?")) |
| oSel.outerHTML = oSel.outerText; |
Hello,
It's installed "RadControls for ASP.NET AJAX Q2 2009 SP1" and "Microsoft ASP.NET 2.0 AJAX Extensions v1.0.61025" on my computer. When I run Live Examples -> Scheduler -> Populating With Data -> XML Provider, double click an appointment, set a "Daily Recurrence Rule" for it and press Save, I got an JavaScript alert telling that "Object reference not set to an instance of an object.". There is no problem with other type of recurrence rules (Hourly, Weekly, Monthly and Yearly). I also tried other examples (e.g. Database Provider), and I had the same problem with them also saving with a daily recurrence rule.
Could anyone please help me solving this problem?
Thank you,
Afsar.
