Hello,
I am trying to get my WebUpload to display on my page. I followed the following example here:
http://samples.infragistics.com/aspnet/Samples/WebUpload/Display/MultipleUpload/Default.aspx?cn=web-upload&sid=a8c69ee2-99e1-4512-938b-52c5d0b9cb6f
I also referenced:
http://blogs.infragistics.com/forums/p/61007/309866.aspx#309866
But I still can't get the WebUpload to display. Here is the version of infragistics I'm working with: 11.2 CLR 3.5. Visual Studio 2008.
I have included the necessarry js files and css files into my project. I think I reference them in the markup correctly. I have a master page that has the references and the page where I'm using the WebUpload control is built of that master page.
Much help will be greatly appreciated.
Regards,Francis
Code is below...
Master:<script type="text/javascript" src="/Scripts/ig.ui.min.js"></script><script type="text/javascript" src="/Scripts/jquery-ui-1.8.21.custom.min.js"></script><script type="text/javascript" src="/Scripts/jquery-1.7.2.min.js"></script><script type="text/javascript" src="/Scripts/jquery.js"></script><script type="text/javascript" src="/Scripts/primarynav.js"></script><link href="../Styles/jquery.ui.custom.min.css" type="text/css" rel="Stylesheet" /><link href="../Styles/ig.ui.min.css" type="text/css" rel="Stylesheet" />
Page:
<%
@ Page Title="" Language="vb" AutoEventWireup="false" MasterPageFile="~/Common/PrimaryNavigation.Master" CodeBehind="Create Project Request Form.aspx.vb" Inherits="CS_Project_Management_Tool.Create_Project_Request_Form" %>
@ Register Assembly="Infragistics35.Web.v11.2, Version=11.2.20112.1019, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb"
%>
<
="server">
%>\
="javascript">
$(window).load(
() {
$(
).igUpload({
mode:
,
maxUploadedFiles: 5,
maxSimultaneousFilesUploads: 2,
progressUrl:
onError:
(e, args) {
showAlert(args);
}
});
showAlert(args) {
).fadeIn(500).delay(3000).fadeOut(500);
>
</
="100%">
="2">
/>
="75px">
="True">
90%">
="200px">
="150px">
="25px">
="75%">
="15%">
="5%">
="25%">
Name
="10%">
Price ($)
="45%">
Comments
="90%">
="20%">
="4">
="top">
="server"
="99.9%">
="80%">
="Submit">
Try remove any reference to any of the other mvc scripts and styles.
That is referenced.
Hi there,
Please reference our script file after all other scripts (especially jQuery and jQuery UI) as it is dependent on those.
<script type="text/javascript" src="/Scripts/ig.ui.min.js"></script>
Let me know if you still have issues with it.