Ajax Upload with progress bar (Bootstrap) - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5) +--- Forum: General Help (https://forum.codeigniter.com/forumdisplay.php?fid=24) +--- Thread: Ajax Upload with progress bar (Bootstrap) (/showthread.php?tid=63129) |
Ajax Upload with progress bar (Bootstrap) - Lykos22 - 09-29-2015 I'd like some help please. I'm having a form inside a bootstrap modal in which I upload files by ajax and what I'd like to do is to display the progress of the uploading in a bootstrap progress bar, but I don't know how to do this. This is my code: Code: // This is the view file (upload form in modal window & the progress bar) This is my ajax script Code: // send data to upload the file And this is the functionality in the controller just in case is needed PHP Code: public function upload_ajax() { How can I set the uploading progress in my bar ? RE: Ajax Upload with progress bar (Bootstrap) - InsiteFX - 09-29-2015 File Upload Progress Twitter Bootstrap PHP RE: Ajax Upload with progress bar (Bootstrap) - ernestlambert - 10-01-2015 You should try https://github.com/kartik-v/bootstrap-fileinput |