Hello together,
after installing the Bootstrap Theme I got some big Issues:
1. "Update and go back to list" is without any functionality. U can click on it, but nothing happends.
2. "Update Changes" brings me to an other side, where this appears to me:
{"success":true,"insert_primary_key":true,"success_message":" Daten wurden erfolgreich aktualisiert. Gehe zur\u00fcck zur Liste<\/a><\/p>","success_list_url":"http:\/\/localhost\/test\/index.php\/jobs\/index\/success\/1"}
When is start firebug on this page "http://localhost/test/index.php/jobs/index/edit/1" I got following Error Message:
common.min.js:1 Uncaught ReferenceError: CacheLibrary is not defined at HTMLDocument.<anonymous> (common.min.js:1) at j (jquery-1.11.1.min.js:2) at Object.fireWith [as resolveWith] (jquery-1.11.1.min.js:2) at Function.ready (jquery-1.11.1.min.js:2) at HTMLDocument.J (jquery-1.11.1.min.js:2)
this is my template
<!DOCTYPE html> <html lang="de"> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <?php foreach($css_files as $file): ?> <link type="text/css" rel="stylesheet" href="<?php echo $file; ?>" /> <?php endforeach; ?> <?php foreach($js_files as $file): ?> <script src="<?php echo $file; ?>"></script> <?php endforeach; ?> </head> <body> <!-- Beginning header --> <div> <a href='<?php echo site_url('page1')?>'>page1</a> | <a href=''>Platzhalter</a> </div> <!-- End of header--> <div style='height:20px;'></div> <div> <?php echo $output; ?> </div> <!-- Beginning footer --> <div> Copyright </div> <!-- End of Footer --> </body> </html>
Can u help me out with that?