I am using radUpload Control.
I have added following reference in the aspx file:
<%
@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>
<%
@ Register TagPrefix="rad" Namespace="Telerik.WebControls" Assembly="RadUpload.NET2" %>
by using this syntax: $find("<%= radUpload.ClientID %>").addFileInput();
works fine.
Earlier when I was using reference:
<%@ Register TagPrefix="telerik" Namespace="Telerik.QuickStart" Assembly="Telerik.QuickStart" %>
<%
@ Register TagPrefix="rad" Namespace="Telerik.WebControls" Assembly="RadUpload.NET2" %>
then $find syntax doesn't work.
I guess the syntax which I am currently using uses the ajaxified radupload.
Well, I am facing one problem with this,
I am not able to applu skin to thsi control. I tried it by using syntax:
<
telerik:RadUpload ID="radUpload" EnableEmbeddedSkins="false" ControlObjectsVisibility="All" Skin="Classic" runat="server"></telerik:RadUpload>
This doesn't works.
Please reply.