Hi everyone,
I am working with codeigniter 2.1 and bootstrap 2.03 along with the blueimp
file uploader plugin ( https://github.com/blueimp/jQuery-File-Upload/ ).
I am now trying to use the plugin as part of a dynamically generated page,
made up of several views.
To do this my CI controller contains the following:
$this->load->view('blue_view_widget'); // the file upload view
$this->load->view('form'); // a form
I now see that the template-upload and template-download table (which is
generated by javascript) is overwritten by the html from the form view. I'm
thinking ( maybe incorrectly ) that the html from the second view is
echo'ed out before the javascript has time to dynamically generate the
table at the bottom of the first view. Does this make sense? if so how can
I fix this ? Is there a way to make the space occupied by the first view
dynamic and expandable if the first view needs more room?
http://pastebin.com/qxZ52S1J
Thank you,
Bill