Kjensen
Kjensen

Reputation: 12374

Control where Uploadify displays queue items and progress

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.

Upvotes: 2

Views: 3622

Answers (1)

Iznogood
Iznogood

Reputation: 12843

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.

Upvotes: 7

Related Questions