or

ASPX:
| <telerik:GridTemplateColumn HeaderText="File" UniqueName="TemplateColumn"> |
| <EditItemTemplate> |
| <%-- <telerik:RadUpload ID="ruFile" runat="server" ControlObjectsVisibility="None" MaxFileInputsCount="1"> |
| </telerik:RadUpload>--%> |
| <asp:FileUpload ID="ruFile" runat="server" /> |
| </EditItemTemplate> |
| </telerik:GridTemplateColumn> |
VB:
| Private Sub rgResource_InsertCommand(ByVal source As Object, ByVal e As Telerik.Web.UI.GridCommandEventArgs) Handles rgResource.InsertCommand |
| Dim insertedItem As GridEditFormInsertItem = DirectCast(e.Item, GridEditFormInsertItem) |
| Dim fileup As FileUpload = TryCast(insertedItem("TemplateColumn").Controls(1), FileUpload) |
| End Sub |
The JavaScript placed on the page by the window seems to detect any time the user presses the enter key and opens the window.... Since I have search field on that page this causes a problem. Suggestions?
| function RadWindowprompt_detectenter(id, ev, input) |
| { |
| if (!ev) ev = window.event; |
| if (ev.keyCode == 13) |
| { |
| var but = input.parentNode.parentNode.getElementsByTagName("A")[0]; |
| if (but) |
| { |
| if (but.click) but.click(); |
| else if (but.onclick) |
| { |
| but.focus(); var click = but.onclick; but.onclick = null; if (click) click.call(but); |
| } |
| } |
| return false; |
| } |
| else return true; |
| } |
.EnableEmbeddedBaseStylesheet =
false;
.EnableEmbeddedSkins =
false;
.EnableEmbeddedScripts =
false;
I have included all css and scripts
Editor.css
Editor.Default.css
etc..
but when i come to use the Image Manager dialog or and other dialogs there is no css for these dialogs??? I have uploaded an image so you can see whats happening.
http://www.grow-studio.com/Image-Mananger.jpg


