Warning: file_get_contents(/data/phpspider/zhask/data//catemap/4/r/78.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Css plupload can';我表现不好,也许是';s风格冲突_Css_Twitter Bootstrap_Modal Dialog_Plupload - Fatal编程技术网

Css plupload can';我表现不好,也许是';s风格冲突

Css plupload can';我表现不好,也许是';s风格冲突,css,twitter-bootstrap,modal-dialog,plupload,Css,Twitter Bootstrap,Modal Dialog,Plupload,我使用pluploadQueue上传文件,除了显示,所有功能都可以正常工作,我想可能是因为风格冲突。我想知道,在那之前有人遇到过这个问题吗? 使用MVC+引导模式+引导对话框+多加载队列 我无法上传图片,如何获得声誉 var uploader1 = $("#uploader1").pluploadQueue({ // General settings runtimes: 'html5,silverlight,flash,html4', url:

我使用pluploadQueue上传文件,除了显示,所有功能都可以正常工作,我想可能是因为风格冲突。我想知道,在那之前有人遇到过这个问题吗? 使用MVC+引导模式+引导对话框+多加载队列

我无法上传图片,如何获得声誉

 var uploader1 = $("#uploader1").pluploadQueue({
        // General settings
        runtimes: 'html5,silverlight,flash,html4',

        url: '@Url.Action("PLUpload", "Document")' + '?hasModification=true',

        chunk_size: '2mb',

        //Allow multiple files
        max_file_count: 10,

        // Specify what files to browse for
        filters: {
            // Maximum file size
            max_file_size: '20mb',
            // Specify what files to browse for
            mime_types: [
                { title: "Allowed files", extensions: "@Model.PLUploadAllowedExtensions" }
            ]
        },

        // Rename files by clicking on their titles
        rename: true,

        // Sort files
        sortable: true,

        // Enable ability to drag'n'drop files onto the widget (currently only HTML5 supports that)
        dragdrop: true,

        //// Views to activate
        views: {
            list: true,
            thumbs: false, // Show thumbs
            active: 'list'
        },

        init: {
            PostInit: function () {
                // Called after initialization is finished and internal event handlers bound. http://www.plupload.com/examples/events
                // The uploader must in html4 only mode be initialized fully before it's hidden: http://stackoverflow.com/questions/11898082/plupload-html4-add-files-dialog-not-triggering-in-ie
                // Prepare uploader
                if ('@Model.HasUploadFiles' == 'True') {

                    $("#hasChanged").attr('value', true);
                    $("#uploader1").show();
                } else {
                    $("#uploader1").hide();
                }


                //// Force resize function is not working. this is the fix for window size
                //$('#formID').css("overflow", "hidden");
            },
        },

        // Flash settings
        flash_swf_url: '@Url.Content("~/Scripts/plupload/Moxie.swf")',

        // Silverlight settings
        silverlight_xap_url: '@Url.Content("~/Scripts/plupload/Moxie.xap")'
    });