views:

69

answers:

1

How can I control where uploadify displays queue items and progress indicators?

I would like to move them away from the upload button.

Uploadify generates html-items with this the class "uploadifyQueueItem" for items in the queue, but they are just put right after the uploadify object, as far as I can tell.

+1  A: 

Normally in your html you have

<div id="fileQueue"></div>

and in your uploadify params:

'queueID'        : 'fileQueue',

Thats all there is to it. You can put that div anywhere in your page you want.

Iznogood