or
| // I want this to be a command, not a hyperlink, but I can't add commands to the controls collection HyperLink hl = new HyperLink(); |
| hl.NavigateUrl = "/url.aspx"; |
| hl.Text = "CollapseCommand"; |
| tempDock.TitlebarContainer.Controls.Add(hl); |
// Title |
| Label lbl = new Label(); |
| lbl.Text = tempDock.Title; |
| tempDock.TitlebarContainer.Controls.Add(lbl); |
| // Create a command for the "Edit" button |
| DockCommand cmd = new DockCommand(); |
| cmd.Name = "cmdHelp"; |
| cmd.AutoPostBack = false; |
| cmd.CssClass = "helpButton"; |
| cmd.Text = "Help"; |
| tempDock.Commands.Add(cmd); |
Hi
I have a RadUpload control on my page and I am noticing some strange behaviour with the caret in the text box. I also see this in your example pages (e.g. http://demos.telerik.com/ASPNET/Prometheus/Upload/Examples/UsingTargetFolder/DefaultCS.aspx)
If I set focus to the input box and hover the mouse over the 'Select' button (on the same row) the caret moves to the left of the imput box and follows the mouse around.
Also, I can't select the text by double clicking on it or by dragging the mouse in the normal way.
I am using IE 7.0.5730.11 on XP SP2, and 2008 Q2 of Rad controls for AJAX.
Any ideas?
Thanks
Russell Mason
| <telerik:RadCalendar ID="RadCalendar1" runat="server" Font-Names="Verdana" OnDayRender="CustomizeDay" |
| Skin="Sunset" EnableMultiSelect="false" Width="202" Height="150"> |
| <ClientEvents OnDateSelected="onDateSELClick" /> |
| </telerik:RadCalendar> |