-1

I am attempting to use fine uploader to handle some file uploading in a web application I have. I would like to do some restyling but I am stuck on something. In the documentation on restyling they have the following line:

The default drop area, button, and file list elements are also, by default, contained in this option.

referring to a parent div with the class qq-uploader.

My question is if I can move certain pieces out of this div (in this case the file list elements). The fact that they say "by default" seems to suggest it can be done, but I haven't seen any documentation on how to do it. Has anyone done this before? Can someone point me in the right direction.

Ray Nicholus
  • 19,538
  • 14
  • 59
  • 82
Abe Miessler
  • 82,532
  • 99
  • 305
  • 486

2 Answers2

3

I have done this before..but it was little styling..

i have to do is change little bit qq.FileUploader in these properties:

  1. template which define the template for the whole uploader.
  2. fileTemplate which define the template for one item in file list.

I was using older version(i think 2.1)..

my advice to you is to open the js file and look into it..it's good commented and 'll teach how this uploader is working.

ebram khalil
  • 8,252
  • 7
  • 42
  • 60
1

You can define a new container to hold the file list, and place it wherever you want. See the listElement option. Probably no need to modify a template in this case.

Ray Nicholus
  • 19,538
  • 14
  • 59
  • 82