Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jul 31st, 2012  |  syntax: None  |  size: 0.50 KB  |  hits: 12  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. How to make Uploadify queue scrollable
  2. <div id="Uploader">
  3.   <div id="UploaderSpot">
  4.     <div id="UploaderField">
  5.       // this content is replaced by Uploadify
  6.     </div>
  7.   </div>
  8. </div>
  9.        
  10. <style type="text/css">
  11. .uploadifyQueue {
  12.      height: 200px;
  13.      overflow: scroll;
  14. }
  15. </style>
  16.        
  17. <input type="file" name="file_upload" id="file_upload" />
  18. <div id="my_queue"></div>
  19.        
  20. $('#file_upload').uploadify({
  21.     ...
  22.     queueID : 'my_queue'
  23. });
  24.        
  25. #my_queue {
  26.     height: 200px;
  27.     overflow: auto;
  28. }