So I have a basic CodeIgniter application and a basic ExtJs 4 application:
I want my ExtJs 4 application to be served up as one of the pages of my codeigniter application.
I tried dumping my whole extjs4 project inside of the root directory under assets/extjs_app/. I then took the index.html from the extjs4 project and made it a template file (index.php) called by one of my controller actions.
Now I am new with both of these technologies and as of yet have not had to include any js / css into my codeigniter application. I have
<html>
<head>
<meta charset="UTF-8">
<title>Account Manager</title>
<!-- <x-compile> -->
<!-- <x-bootstrap> -->
<link rel="stylesheet" href="bootstrap.css">
<script src="<?= base_url('assets/extjs_app') ?>/ext/ext-dev.js"></script>
<script src="<?= base_url('assets/extjs_app') ?>/bootstrap.js"></script>
<!-- </x-bootstrap> -->
<script src="<?= base_url('assets/extjs_app') ?>/app.js"></script>
<!-- </x-compile> -->
</head>
<body></body>
</html>
It isn't picking up the js or css files though.
What am i missing? Also, this is just a hack job on my part. Is there any documentation of combining these two technologies elsewhere?