├── .gitignore ├── .htaccess ├── DB ├── all_New_101.sql └── all_New_102 + cms.sql ├── README.md ├── application ├── .htaccess ├── cache │ ├── .htaccess │ └── index.html ├── config │ ├── autoload.php │ ├── config.php │ ├── constants.php │ ├── database.php │ ├── doctypes.php │ ├── foreign_chars.php │ ├── grocery_crud.php │ ├── hooks.php │ ├── index.html │ ├── memcached.php │ ├── migration.php │ ├── mimes.php │ ├── profiler.php │ ├── routes.php │ ├── smileys.php │ └── user_agents.php ├── controllers │ ├── Auth.php │ ├── Data.php │ ├── Supplier.php │ └── index.html ├── core │ ├── MY_Loader.php │ ├── MY_Router.php │ └── index.html ├── helpers │ └── index.html ├── hooks │ └── index.html ├── index.html ├── language │ ├── english │ │ └── index.html │ └── index.html ├── libraries │ ├── BaseController.php │ ├── Grocery_CRUD.php │ ├── image_moo.php │ └── index.html ├── logs │ ├── index.html │ ├── log-2017-05-08.php │ ├── log-2017-05-09.php │ ├── log-2017-05-10.php │ ├── log-2017-05-12.php │ ├── log-2017-05-13.php │ ├── log-2017-05-21.php │ ├── log-2017-05-23.php │ ├── log-2017-05-29.php │ ├── log-2017-06-03.php │ ├── log-2017-06-04.php │ ├── log-2017-06-05.php │ ├── log-2017-06-14.php │ ├── log-2017-06-15.php │ ├── log-2017-06-18.php │ ├── log-2017-06-19.php │ ├── log-2017-06-20.php │ ├── log-2017-06-23.php │ ├── log-2017-06-24.php │ ├── log-2017-06-25.php │ ├── log-2017-06-26.php │ ├── log-2017-07-16.php │ ├── log-2017-07-20.php │ ├── log-2017-07-24.php │ ├── log-2017-08-04.php │ ├── log-2017-08-12.php │ └── log-2017-08-30.php ├── models │ ├── Grafik_model.php │ ├── Grocery_crud_model.php │ ├── Home.php │ ├── Mbarang.php │ ├── Msupplier.php │ ├── Register.php │ ├── User.php │ └── index.html ├── modules │ ├── album │ │ └── controllers │ │ │ └── Album.php │ ├── barang │ │ ├── controllers │ │ │ └── Barang.php │ │ ├── models │ │ │ └── Barang_model.php │ │ └── views │ │ │ └── barang_v.php │ ├── brgmasuk │ │ ├── controllers │ │ │ └── Brgmasuk.php │ │ ├── models │ │ │ └── mbrg_supp.php │ │ └── views │ │ │ └── brgmasuk.php │ ├── chat │ │ ├── controllers │ │ │ └── Chat.php │ │ └── models │ │ │ └── Chat_model.php │ ├── content │ │ └── controllers │ │ │ └── content.php │ ├── data_frame │ │ ├── controllers │ │ │ └── Data_frame.php │ │ └── views │ │ │ └── frame.php │ ├── documentation │ │ ├── controllers │ │ │ └── Documentation.php │ │ └── views │ │ │ └── index.php │ ├── galeri │ │ ├── controllers │ │ │ └── Galeri.php │ │ ├── models │ │ │ └── Gallery.php │ │ └── views │ │ │ └── galeri_v.php │ ├── home │ │ ├── controllers │ │ │ └── Home.php │ │ ├── models │ │ │ └── Menu_model.php │ │ └── views │ │ │ ├── footer.php │ │ │ ├── header.php │ │ │ ├── home.php │ │ │ └── main.php │ ├── login │ │ ├── controllers │ │ │ └── Login.php │ │ └── views │ │ │ └── login.php │ ├── menu │ │ ├── controllers │ │ │ └── Menu.php │ │ └── models │ │ │ └── Menu_model.php │ ├── module │ │ ├── controllers │ │ │ └── Module.php │ │ └── models │ │ │ └── Modules_model.php │ ├── publik │ │ ├── controllers │ │ │ └── Publik.php │ │ ├── models │ │ │ └── Model_publik.php │ │ └── views │ │ │ └── cms │ │ │ ├── album.php │ │ │ ├── content │ │ │ └── tk.php │ │ │ ├── foot.php │ │ │ ├── head.php │ │ │ ├── index.php │ │ │ └── news.php │ ├── register │ │ ├── controllers │ │ │ └── Register.php │ │ ├── models │ │ │ ├── Register.php │ │ │ └── Register_model.php │ │ └── views │ │ │ └── register.php │ ├── rekening │ │ ├── controllers │ │ │ ├── Rekening.php │ │ │ └── Rekening_bertingkat.php │ │ ├── models │ │ │ ├── Rekening_model.php │ │ │ └── Rekening_model_multilevel.php │ │ └── views │ │ │ ├── rekening_v.php │ │ │ └── rekening_v_bertingkat.php │ ├── todo │ │ ├── controllers │ │ │ └── Todo.php │ │ └── models │ │ │ └── Todo_model.php │ └── user │ │ ├── controllers │ │ └── User.php │ │ ├── models │ │ └── User_model.php │ │ └── views │ │ └── user_v.php ├── third_party │ ├── MX │ │ ├── Base.php │ │ ├── Ci.php │ │ ├── Config.php │ │ ├── Controller.php │ │ ├── Lang.php │ │ ├── Loader.php │ │ ├── Modules.php │ │ └── Router.php │ └── index.html └── views │ ├── errors │ ├── cli │ │ ├── error_404.php │ │ ├── error_db.php │ │ ├── error_exception.php │ │ ├── error_general.php │ │ ├── error_php.php │ │ └── index.html │ ├── html │ │ ├── error_404.php │ │ ├── error_db.php │ │ ├── error_exception.php │ │ ├── error_general.php │ │ ├── error_php.php │ │ └── index.html │ └── index.html │ ├── example.php │ ├── index.html │ └── welcome_message.php ├── assets ├── AdminLTE-2.3.11 │ ├── .gitignore │ ├── .jshintrc │ ├── Gruntfile.js │ ├── LICENSE │ ├── README.md │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap-theme.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ ├── bower.json │ ├── build │ │ ├── bootstrap-less │ │ │ ├── mixins.less │ │ │ ├── mixins │ │ │ │ ├── alerts.less │ │ │ │ ├── background-variant.less │ │ │ │ ├── border-radius.less │ │ │ │ ├── buttons.less │ │ │ │ ├── center-block.less │ │ │ │ ├── clearfix.less │ │ │ │ ├── forms.less │ │ │ │ ├── gradients.less │ │ │ │ ├── grid-framework.less │ │ │ │ ├── grid.less │ │ │ │ ├── hide-text.less │ │ │ │ ├── image.less │ │ │ │ ├── labels.less │ │ │ │ ├── list-group.less │ │ │ │ ├── nav-divider.less │ │ │ │ ├── nav-vertical-align.less │ │ │ │ ├── opacity.less │ │ │ │ ├── pagination.less │ │ │ │ ├── panels.less │ │ │ │ ├── progress-bar.less │ │ │ │ ├── reset-filter.less │ │ │ │ ├── reset-text.less │ │ │ │ ├── resize.less │ │ │ │ ├── responsive-visibility.less │ │ │ │ ├── size.less │ │ │ │ ├── tab-focus.less │ │ │ │ ├── table-row.less │ │ │ │ ├── text-emphasis.less │ │ │ │ ├── text-overflow.less │ │ │ │ └── vendor-prefixes.less │ │ │ └── variables.less │ │ └── less │ │ │ ├── .csslintrc │ │ │ ├── 404_500_errors.less │ │ │ ├── AdminLTE-without-plugins.less │ │ │ ├── AdminLTE.less │ │ │ ├── alerts.less │ │ │ ├── bootstrap-social.less │ │ │ ├── boxes.less │ │ │ ├── buttons.less │ │ │ ├── callout.less │ │ │ ├── carousel.less │ │ │ ├── control-sidebar.less │ │ │ ├── core.less │ │ │ ├── direct-chat.less │ │ │ ├── dropdown.less │ │ │ ├── forms.less │ │ │ ├── fullcalendar.less │ │ │ ├── header.less │ │ │ ├── info-box.less │ │ │ ├── invoice.less │ │ │ ├── labels.less │ │ │ ├── lockscreen.less │ │ │ ├── login_and_register.less │ │ │ ├── mailbox.less │ │ │ ├── miscellaneous.less │ │ │ ├── mixins.less │ │ │ ├── modal.less │ │ │ ├── navs.less │ │ │ ├── plugins.less │ │ │ ├── print.less │ │ │ ├── products.less │ │ │ ├── profile.less │ │ │ ├── progress-bars.less │ │ │ ├── select2.less │ │ │ ├── sidebar-mini.less │ │ │ ├── sidebar.less │ │ │ ├── skins │ │ │ ├── _all-skins.less │ │ │ ├── skin-black-light.less │ │ │ ├── skin-black.less │ │ │ ├── skin-blue-light.less │ │ │ ├── skin-blue.less │ │ │ ├── skin-green-light.less │ │ │ ├── skin-green.less │ │ │ ├── skin-purple-light.less │ │ │ ├── skin-purple.less │ │ │ ├── skin-red-light.less │ │ │ ├── skin-red.less │ │ │ ├── skin-yellow-light.less │ │ │ └── skin-yellow.less │ │ │ ├── small-box.less │ │ │ ├── social-widgets.less │ │ │ ├── table.less │ │ │ ├── timeline.less │ │ │ ├── users-list.less │ │ │ └── variables.less │ ├── changelog.md │ ├── composer.json │ ├── dist │ │ ├── css │ │ │ ├── AdminLTE.css │ │ │ ├── AdminLTE.min.css │ │ │ ├── alt │ │ │ │ ├── AdminLTE-bootstrap-social.css │ │ │ │ ├── AdminLTE-bootstrap-social.min.css │ │ │ │ ├── AdminLTE-fullcalendar.css │ │ │ │ ├── AdminLTE-fullcalendar.min.css │ │ │ │ ├── AdminLTE-select2.css │ │ │ │ ├── AdminLTE-select2.min.css │ │ │ │ ├── AdminLTE-without-plugins.css │ │ │ │ └── AdminLTE-without-plugins.min.css │ │ │ └── skins │ │ │ │ ├── _all-skins.css │ │ │ │ ├── _all-skins.min.css │ │ │ │ ├── skin-black-light.css │ │ │ │ ├── skin-black-light.min.css │ │ │ │ ├── skin-black.css │ │ │ │ ├── skin-black.min.css │ │ │ │ ├── skin-blue-light.css │ │ │ │ ├── skin-blue-light.min.css │ │ │ │ ├── skin-blue.css │ │ │ │ ├── skin-blue.min.css │ │ │ │ ├── skin-green-light.css │ │ │ │ ├── skin-green-light.min.css │ │ │ │ ├── skin-green.css │ │ │ │ ├── skin-green.min.css │ │ │ │ ├── skin-purple-light.css │ │ │ │ ├── skin-purple-light.min.css │ │ │ │ ├── skin-purple.css │ │ │ │ ├── skin-purple.min.css │ │ │ │ ├── skin-red-light.css │ │ │ │ ├── skin-red-light.min.css │ │ │ │ ├── skin-red.css │ │ │ │ ├── skin-red.min.css │ │ │ │ ├── skin-yellow-light.css │ │ │ │ ├── skin-yellow-light.min.css │ │ │ │ ├── skin-yellow.css │ │ │ │ └── skin-yellow.min.css │ │ ├── img │ │ │ ├── avatar.png │ │ │ ├── avatar04.png │ │ │ ├── avatar2.png │ │ │ ├── avatar3.png │ │ │ ├── avatar5.png │ │ │ ├── boxed-bg.jpg │ │ │ ├── boxed-bg.png │ │ │ ├── credit │ │ │ │ ├── american-express.png │ │ │ │ ├── cirrus.png │ │ │ │ ├── mastercard.png │ │ │ │ ├── mestro.png │ │ │ │ ├── paypal.png │ │ │ │ ├── paypal2.png │ │ │ │ └── visa.png │ │ │ ├── default-50x50.gif │ │ │ ├── icons.png │ │ │ ├── photo1.png │ │ │ ├── photo2.png │ │ │ ├── photo3.jpg │ │ │ ├── photo4.jpg │ │ │ ├── user1-128x128.jpg │ │ │ ├── user2-160x160.jpg │ │ │ ├── user3-128x128.jpg │ │ │ ├── user4-128x128.jpg │ │ │ ├── user5-128x128.jpg │ │ │ ├── user6-128x128.jpg │ │ │ ├── user7-128x128.jpg │ │ │ └── user8-128x128.jpg │ │ └── js │ │ │ ├── app.js │ │ │ ├── app.min.js │ │ │ ├── demo.js │ │ │ └── pages │ │ │ ├── dashboard.js │ │ │ └── dashboard2.js │ ├── documentation │ │ ├── build │ │ │ ├── include │ │ │ │ ├── adminlte-options.html │ │ │ │ ├── advice.html │ │ │ │ ├── browsers.html │ │ │ │ ├── components.html │ │ │ │ ├── dependencies.html │ │ │ │ ├── download.html │ │ │ │ ├── faq.html │ │ │ │ ├── implementations.html │ │ │ │ ├── introduction.html │ │ │ │ ├── layout.html │ │ │ │ ├── license.html │ │ │ │ ├── plugins.html │ │ │ │ └── upgrade.html │ │ │ └── index.html │ │ ├── docs.js │ │ ├── index.html │ │ └── style.css │ ├── index.html │ ├── index2.html │ ├── package.json │ ├── pages │ │ ├── UI │ │ │ ├── buttons.html │ │ │ ├── general.html │ │ │ ├── icons.html │ │ │ ├── modals.html │ │ │ ├── sliders.html │ │ │ └── timeline.html │ │ ├── calendar.html │ │ ├── charts │ │ │ ├── chartjs.html │ │ │ ├── flot.html │ │ │ ├── inline.html │ │ │ └── morris.html │ │ ├── examples │ │ │ ├── 404.html │ │ │ ├── 500.html │ │ │ ├── blank.html │ │ │ ├── invoice-print.html │ │ │ ├── invoice.html │ │ │ ├── lockscreen.html │ │ │ ├── login.html │ │ │ ├── pace.html │ │ │ ├── profile.html │ │ │ └── register.html │ │ ├── forms │ │ │ ├── advanced.html │ │ │ ├── editors.html │ │ │ └── general.html │ │ ├── layout │ │ │ ├── boxed.html │ │ │ ├── collapsed-sidebar.html │ │ │ ├── fixed.html │ │ │ └── top-nav.html │ │ ├── mailbox │ │ │ ├── compose.html │ │ │ ├── mailbox.html │ │ │ └── read-mail.html │ │ ├── tables │ │ │ ├── data.html │ │ │ └── simple.html │ │ └── widgets.html │ ├── plugins │ │ ├── bootstrap-slider │ │ │ ├── bootstrap-slider.js │ │ │ └── slider.css │ │ ├── bootstrap-wysihtml5 │ │ │ ├── bootstrap3-wysihtml5.all.js │ │ │ ├── bootstrap3-wysihtml5.all.min.js │ │ │ ├── bootstrap3-wysihtml5.css │ │ │ └── bootstrap3-wysihtml5.min.css │ │ ├── chartjs │ │ │ ├── Chart.js │ │ │ └── Chart.min.js │ │ ├── ckeditor │ │ │ ├── CHANGES.md │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── adapters │ │ │ │ └── jquery.js │ │ │ ├── build-config.js │ │ │ ├── ckeditor.js │ │ │ ├── config.js │ │ │ ├── contents.css │ │ │ ├── lang │ │ │ │ ├── af.js │ │ │ │ ├── ar.js │ │ │ │ ├── bg.js │ │ │ │ ├── bn.js │ │ │ │ ├── bs.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de-ch.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en-au.js │ │ │ │ ├── en-ca.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fo.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── gu.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── is.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── ka.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── ku.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── mn.js │ │ │ │ ├── ms.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-latn.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── tt.js │ │ │ │ ├── ug.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh.js │ │ │ ├── plugins │ │ │ │ ├── a11yhelp │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── a11yhelp.js │ │ │ │ │ │ └── lang │ │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ │ ├── af.js │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de-ch.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en-gb.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ ├── eu.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fo.js │ │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── gu.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hi.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ ├── mk.js │ │ │ │ │ │ ├── mn.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── si.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ │ ├── sr.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── tt.js │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ └── zh.js │ │ │ │ ├── about │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── about.js │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ ├── clipboard │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── paste.js │ │ │ │ ├── dialog │ │ │ │ │ └── dialogDefinition.js │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ ├── image │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── image.js │ │ │ │ │ └── images │ │ │ │ │ │ └── noimage.png │ │ │ │ ├── link │ │ │ │ │ ├── dialogs │ │ │ │ │ │ ├── anchor.js │ │ │ │ │ │ └── link.js │ │ │ │ │ └── images │ │ │ │ │ │ ├── anchor.png │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── anchor.png │ │ │ │ ├── magicline │ │ │ │ │ └── images │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ │ └── icon.png │ │ │ │ ├── pastefromword │ │ │ │ │ └── filter │ │ │ │ │ │ └── default.js │ │ │ │ ├── scayt │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ ├── README.md │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── options.js │ │ │ │ │ │ └── toolbar.css │ │ │ │ ├── specialchar │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ │ ├── af.js │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de-ch.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en-gb.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ ├── eu.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── si.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── tt.js │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ └── zh.js │ │ │ │ │ │ └── specialchar.js │ │ │ │ ├── table │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── table.js │ │ │ │ ├── tabletools │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── tableCell.js │ │ │ │ └── wsc │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ ├── README.md │ │ │ │ │ └── dialogs │ │ │ │ │ ├── ciframe.html │ │ │ │ │ ├── tmpFrameset.html │ │ │ │ │ ├── wsc.css │ │ │ │ │ ├── wsc.js │ │ │ │ │ └── wsc_ie.js │ │ │ ├── samples │ │ │ │ ├── css │ │ │ │ │ └── samples.css │ │ │ │ ├── img │ │ │ │ │ ├── github-top.png │ │ │ │ │ ├── header-bg.png │ │ │ │ │ ├── header-separator.png │ │ │ │ │ ├── logo.png │ │ │ │ │ └── navigation-tip.png │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── sample.js │ │ │ │ │ └── sf.js │ │ │ │ ├── old │ │ │ │ │ ├── ajax.html │ │ │ │ │ ├── api.html │ │ │ │ │ ├── appendto.html │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── inlineall │ │ │ │ │ │ │ └── logo.png │ │ │ │ │ │ ├── outputxhtml │ │ │ │ │ │ │ └── outputxhtml.css │ │ │ │ │ │ ├── posteddata.php │ │ │ │ │ │ ├── sample.jpg │ │ │ │ │ │ └── uilanguages │ │ │ │ │ │ │ └── languages.js │ │ │ │ │ ├── datafiltering.html │ │ │ │ │ ├── dialog │ │ │ │ │ │ ├── assets │ │ │ │ │ │ │ └── my_dialog.js │ │ │ │ │ │ └── dialog.html │ │ │ │ │ ├── divreplace.html │ │ │ │ │ ├── enterkey │ │ │ │ │ │ └── enterkey.html │ │ │ │ │ ├── htmlwriter │ │ │ │ │ │ ├── assets │ │ │ │ │ │ │ └── outputforflash │ │ │ │ │ │ │ │ ├── outputforflash.fla │ │ │ │ │ │ │ │ ├── outputforflash.swf │ │ │ │ │ │ │ │ └── swfobject.js │ │ │ │ │ │ ├── outputforflash.html │ │ │ │ │ │ └── outputhtml.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── inlineall.html │ │ │ │ │ ├── inlinebycode.html │ │ │ │ │ ├── inlinetextarea.html │ │ │ │ │ ├── jquery.html │ │ │ │ │ ├── magicline │ │ │ │ │ │ └── magicline.html │ │ │ │ │ ├── readonly.html │ │ │ │ │ ├── replacebyclass.html │ │ │ │ │ ├── replacebycode.html │ │ │ │ │ ├── sample.css │ │ │ │ │ ├── sample.js │ │ │ │ │ ├── sample_posteddata.php │ │ │ │ │ ├── tabindex.html │ │ │ │ │ ├── toolbar │ │ │ │ │ │ └── toolbar.html │ │ │ │ │ ├── uicolor.html │ │ │ │ │ ├── uilanguages.html │ │ │ │ │ ├── wysiwygarea │ │ │ │ │ │ └── fullpage.html │ │ │ │ │ └── xhtmlstyle.html │ │ │ │ └── toolbarconfigurator │ │ │ │ │ ├── css │ │ │ │ │ └── fontello.css │ │ │ │ │ ├── font │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── config.json │ │ │ │ │ ├── fontello.eot │ │ │ │ │ ├── fontello.svg │ │ │ │ │ ├── fontello.ttf │ │ │ │ │ └── fontello.woff │ │ │ │ │ ├── index.html │ │ │ │ │ ├── js │ │ │ │ │ ├── abstracttoolbarmodifier.js │ │ │ │ │ ├── fulltoolbareditor.js │ │ │ │ │ ├── toolbarmodifier.js │ │ │ │ │ └── toolbartextmodifier.js │ │ │ │ │ └── lib │ │ │ │ │ └── codemirror │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── codemirror.css │ │ │ │ │ ├── codemirror.js │ │ │ │ │ ├── javascript.js │ │ │ │ │ ├── neo.css │ │ │ │ │ ├── show-hint.css │ │ │ │ │ └── show-hint.js │ │ │ ├── skins │ │ │ │ └── moono │ │ │ │ │ ├── dialog.css │ │ │ │ │ ├── dialog_ie.css │ │ │ │ │ ├── dialog_ie7.css │ │ │ │ │ ├── dialog_ie8.css │ │ │ │ │ ├── dialog_iequirks.css │ │ │ │ │ ├── editor.css │ │ │ │ │ ├── editor_gecko.css │ │ │ │ │ ├── editor_ie.css │ │ │ │ │ ├── editor_ie7.css │ │ │ │ │ ├── editor_ie8.css │ │ │ │ │ ├── editor_iequirks.css │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── icons_hidpi.png │ │ │ │ │ ├── images │ │ │ │ │ ├── arrow.png │ │ │ │ │ ├── close.png │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ ├── lock-open.png │ │ │ │ │ │ ├── lock.png │ │ │ │ │ │ └── refresh.png │ │ │ │ │ ├── lock-open.png │ │ │ │ │ ├── lock.png │ │ │ │ │ ├── refresh.png │ │ │ │ │ └── spinner.gif │ │ │ │ │ └── readme.md │ │ │ └── styles.js │ │ ├── colorpicker │ │ │ ├── bootstrap-colorpicker.css │ │ │ ├── bootstrap-colorpicker.js │ │ │ ├── bootstrap-colorpicker.min.css │ │ │ ├── bootstrap-colorpicker.min.js │ │ │ └── img │ │ │ │ ├── alpha-horizontal.png │ │ │ │ ├── alpha.png │ │ │ │ ├── hue-horizontal.png │ │ │ │ ├── hue.png │ │ │ │ └── saturation.png │ │ ├── datatables │ │ │ ├── dataTables.bootstrap.css │ │ │ ├── dataTables.bootstrap.js │ │ │ ├── dataTables.bootstrap.min.js │ │ │ ├── extensions │ │ │ │ ├── AutoFill │ │ │ │ │ ├── Readme.txt │ │ │ │ │ ├── css │ │ │ │ │ │ ├── dataTables.autoFill.css │ │ │ │ │ │ └── dataTables.autoFill.min.css │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── columns.html │ │ │ │ │ │ ├── complete-callback.html │ │ │ │ │ │ ├── fill-both.html │ │ │ │ │ │ ├── fill-horizontal.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── scrolling.html │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ └── step-callback.html │ │ │ │ │ ├── images │ │ │ │ │ │ └── filler.png │ │ │ │ │ └── js │ │ │ │ │ │ ├── dataTables.autoFill.js │ │ │ │ │ │ └── dataTables.autoFill.min.js │ │ │ │ ├── ColReorder │ │ │ │ │ ├── License.txt │ │ │ │ │ ├── Readme.md │ │ │ │ │ ├── css │ │ │ │ │ │ ├── dataTables.colReorder.css │ │ │ │ │ │ └── dataTables.colReorder.min.css │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── alt_insert.html │ │ │ │ │ │ ├── col_filter.html │ │ │ │ │ │ ├── colvis.html │ │ │ │ │ │ ├── fixedcolumns.html │ │ │ │ │ │ ├── fixedheader.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── jqueryui.html │ │ │ │ │ │ ├── new_init.html │ │ │ │ │ │ ├── predefined.html │ │ │ │ │ │ ├── realtime.html │ │ │ │ │ │ ├── reset.html │ │ │ │ │ │ ├── scrolling.html │ │ │ │ │ │ ├── server_side.html │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ └── state_save.html │ │ │ │ │ ├── images │ │ │ │ │ │ └── insert.png │ │ │ │ │ └── js │ │ │ │ │ │ ├── dataTables.colReorder.js │ │ │ │ │ │ └── dataTables.colReorder.min.js │ │ │ │ ├── ColVis │ │ │ │ │ ├── License.txt │ │ │ │ │ ├── Readme.md │ │ │ │ │ ├── css │ │ │ │ │ │ ├── dataTables.colVis.css │ │ │ │ │ │ ├── dataTables.colVis.min.css │ │ │ │ │ │ └── dataTables.colvis.jqueryui.css │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── button_order.html │ │ │ │ │ │ ├── exclude_columns.html │ │ │ │ │ │ ├── group_columns.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── jqueryui.html │ │ │ │ │ │ ├── mouseover.html │ │ │ │ │ │ ├── new_init.html │ │ │ │ │ │ ├── restore.html │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ ├── text.html │ │ │ │ │ │ ├── title_callback.html │ │ │ │ │ │ ├── two_tables.html │ │ │ │ │ │ └── two_tables_identical.html │ │ │ │ │ └── js │ │ │ │ │ │ ├── dataTables.colVis.js │ │ │ │ │ │ └── dataTables.colVis.min.js │ │ │ │ ├── FixedColumns │ │ │ │ │ ├── License.txt │ │ │ │ │ ├── Readme.md │ │ │ │ │ ├── css │ │ │ │ │ │ ├── dataTables.fixedColumns.css │ │ │ │ │ │ └── dataTables.fixedColumns.min.css │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── bootstrap.html │ │ │ │ │ │ ├── col_filter.html │ │ │ │ │ │ ├── colvis.html │ │ │ │ │ │ ├── css_size.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── index_column.html │ │ │ │ │ │ ├── left_right_columns.html │ │ │ │ │ │ ├── right_column.html │ │ │ │ │ │ ├── rowspan.html │ │ │ │ │ │ ├── server-side-processing.html │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ ├── size_fixed.html │ │ │ │ │ │ ├── size_fluid.html │ │ │ │ │ │ └── two_columns.html │ │ │ │ │ └── js │ │ │ │ │ │ ├── dataTables.fixedColumns.js │ │ │ │ │ │ └── dataTables.fixedColumns.min.js │ │ │ │ ├── FixedHeader │ │ │ │ │ ├── Readme.txt │ │ │ │ │ ├── css │ │ │ │ │ │ ├── dataTables.fixedHeader.css │ │ │ │ │ │ └── dataTables.fixedHeader.min.css │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── header_footer.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ ├── top_left_right.html │ │ │ │ │ │ ├── two_tables.html │ │ │ │ │ │ └── zIndexes.html │ │ │ │ │ └── js │ │ │ │ │ │ ├── dataTables.fixedHeader.js │ │ │ │ │ │ └── dataTables.fixedHeader.min.js │ │ │ │ ├── KeyTable │ │ │ │ │ ├── Readme.txt │ │ │ │ │ ├── css │ │ │ │ │ │ ├── dataTables.keyTable.css │ │ │ │ │ │ └── dataTables.keyTable.min.css │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── events.html │ │ │ │ │ │ ├── html.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── scrolling.html │ │ │ │ │ │ └── simple.html │ │ │ │ │ └── js │ │ │ │ │ │ ├── dataTables.keyTable.js │ │ │ │ │ │ └── dataTables.keyTable.min.js │ │ │ │ ├── Responsive │ │ │ │ │ ├── License.txt │ │ │ │ │ ├── Readme.md │ │ │ │ │ ├── css │ │ │ │ │ │ ├── dataTables.responsive.css │ │ │ │ │ │ └── dataTables.responsive.scss │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── child-rows │ │ │ │ │ │ │ ├── column-control.html │ │ │ │ │ │ │ ├── custom-renderer.html │ │ │ │ │ │ │ ├── disable-child-rows.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── right-column.html │ │ │ │ │ │ │ └── whole-row-control.html │ │ │ │ │ │ ├── display-control │ │ │ │ │ │ │ ├── auto.html │ │ │ │ │ │ │ ├── classes.html │ │ │ │ │ │ │ ├── complexHeader.html │ │ │ │ │ │ │ ├── fixedHeader.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── init-classes.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── initialisation │ │ │ │ │ │ │ ├── ajax.html │ │ │ │ │ │ │ ├── className.html │ │ │ │ │ │ │ ├── default.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── new.html │ │ │ │ │ │ │ └── option.html │ │ │ │ │ │ └── styling │ │ │ │ │ │ │ ├── bootstrap.html │ │ │ │ │ │ │ ├── compact.html │ │ │ │ │ │ │ ├── foundation.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── scrolling.html │ │ │ │ │ └── js │ │ │ │ │ │ ├── dataTables.responsive.js │ │ │ │ │ │ └── dataTables.responsive.min.js │ │ │ │ ├── Scroller │ │ │ │ │ ├── Readme.txt │ │ │ │ │ ├── css │ │ │ │ │ │ ├── dataTables.scroller.css │ │ │ │ │ │ └── dataTables.scroller.min.css │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── api_scrolling.html │ │ │ │ │ │ ├── data │ │ │ │ │ │ │ ├── 2500.txt │ │ │ │ │ │ │ └── ssp.php │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── large_js_source.html │ │ │ │ │ │ ├── server-side_processing.html │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ └── state_saving.html │ │ │ │ │ ├── images │ │ │ │ │ │ └── loading-background.png │ │ │ │ │ └── js │ │ │ │ │ │ ├── dataTables.scroller.js │ │ │ │ │ │ └── dataTables.scroller.min.js │ │ │ │ └── TableTools │ │ │ │ │ ├── Readme.md │ │ │ │ │ ├── css │ │ │ │ │ ├── dataTables.tableTools.css │ │ │ │ │ └── dataTables.tableTools.min.css │ │ │ │ │ ├── examples │ │ │ │ │ ├── ajax.html │ │ │ │ │ ├── alter_buttons.html │ │ │ │ │ ├── bootstrap.html │ │ │ │ │ ├── button_text.html │ │ │ │ │ ├── collection.html │ │ │ │ │ ├── defaults.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── jqueryui.html │ │ │ │ │ ├── multi_instance.html │ │ │ │ │ ├── multiple_tables.html │ │ │ │ │ ├── new_init.html │ │ │ │ │ ├── pdf_message.html │ │ │ │ │ ├── plug-in.html │ │ │ │ │ ├── select_column.html │ │ │ │ │ ├── select_multi.html │ │ │ │ │ ├── select_os.html │ │ │ │ │ ├── select_single.html │ │ │ │ │ ├── simple.html │ │ │ │ │ └── swf_path.html │ │ │ │ │ ├── images │ │ │ │ │ ├── collection.png │ │ │ │ │ ├── collection_hover.png │ │ │ │ │ ├── copy.png │ │ │ │ │ ├── copy_hover.png │ │ │ │ │ ├── csv.png │ │ │ │ │ ├── csv_hover.png │ │ │ │ │ ├── pdf.png │ │ │ │ │ ├── pdf_hover.png │ │ │ │ │ ├── print.png │ │ │ │ │ ├── print_hover.png │ │ │ │ │ ├── psd │ │ │ │ │ │ ├── collection.psd │ │ │ │ │ │ ├── copy document.psd │ │ │ │ │ │ ├── file_types.psd │ │ │ │ │ │ └── printer.psd │ │ │ │ │ ├── xls.png │ │ │ │ │ └── xls_hover.png │ │ │ │ │ ├── js │ │ │ │ │ ├── dataTables.tableTools.js │ │ │ │ │ └── dataTables.tableTools.min.js │ │ │ │ │ └── swf │ │ │ │ │ ├── copy_csv_xls.swf │ │ │ │ │ └── copy_csv_xls_pdf.swf │ │ │ ├── images │ │ │ │ ├── sort_asc.png │ │ │ │ ├── sort_asc_disabled.png │ │ │ │ ├── sort_both.png │ │ │ │ ├── sort_desc.png │ │ │ │ └── sort_desc_disabled.png │ │ │ ├── jquery.dataTables.css │ │ │ ├── jquery.dataTables.js │ │ │ ├── jquery.dataTables.min.css │ │ │ ├── jquery.dataTables.min.js │ │ │ └── jquery.dataTables_themeroller.css │ │ ├── datepicker │ │ │ ├── bootstrap-datepicker.js │ │ │ ├── datepicker3.css │ │ │ └── locales │ │ │ │ ├── bootstrap-datepicker.ar.js │ │ │ │ ├── bootstrap-datepicker.az.js │ │ │ │ ├── bootstrap-datepicker.bg.js │ │ │ │ ├── bootstrap-datepicker.ca.js │ │ │ │ ├── bootstrap-datepicker.cs.js │ │ │ │ ├── bootstrap-datepicker.cy.js │ │ │ │ ├── bootstrap-datepicker.da.js │ │ │ │ ├── bootstrap-datepicker.de.js │ │ │ │ ├── bootstrap-datepicker.el.js │ │ │ │ ├── bootstrap-datepicker.es.js │ │ │ │ ├── bootstrap-datepicker.et.js │ │ │ │ ├── bootstrap-datepicker.fa.js │ │ │ │ ├── bootstrap-datepicker.fi.js │ │ │ │ ├── bootstrap-datepicker.fr.js │ │ │ │ ├── bootstrap-datepicker.gl.js │ │ │ │ ├── bootstrap-datepicker.he.js │ │ │ │ ├── bootstrap-datepicker.hr.js │ │ │ │ ├── bootstrap-datepicker.hu.js │ │ │ │ ├── bootstrap-datepicker.id.js │ │ │ │ ├── bootstrap-datepicker.is.js │ │ │ │ ├── bootstrap-datepicker.it.js │ │ │ │ ├── bootstrap-datepicker.ja.js │ │ │ │ ├── bootstrap-datepicker.ka.js │ │ │ │ ├── bootstrap-datepicker.kk.js │ │ │ │ ├── bootstrap-datepicker.kr.js │ │ │ │ ├── bootstrap-datepicker.lt.js │ │ │ │ ├── bootstrap-datepicker.lv.js │ │ │ │ ├── bootstrap-datepicker.mk.js │ │ │ │ ├── bootstrap-datepicker.ms.js │ │ │ │ ├── bootstrap-datepicker.nb.js │ │ │ │ ├── bootstrap-datepicker.nl-BE.js │ │ │ │ ├── bootstrap-datepicker.nl.js │ │ │ │ ├── bootstrap-datepicker.no.js │ │ │ │ ├── bootstrap-datepicker.pl.js │ │ │ │ ├── bootstrap-datepicker.pt-BR.js │ │ │ │ ├── bootstrap-datepicker.pt.js │ │ │ │ ├── bootstrap-datepicker.ro.js │ │ │ │ ├── bootstrap-datepicker.rs-latin.js │ │ │ │ ├── bootstrap-datepicker.rs.js │ │ │ │ ├── bootstrap-datepicker.ru.js │ │ │ │ ├── bootstrap-datepicker.sk.js │ │ │ │ ├── bootstrap-datepicker.sl.js │ │ │ │ ├── bootstrap-datepicker.sq.js │ │ │ │ ├── bootstrap-datepicker.sv.js │ │ │ │ ├── bootstrap-datepicker.sw.js │ │ │ │ ├── bootstrap-datepicker.th.js │ │ │ │ ├── bootstrap-datepicker.tr.js │ │ │ │ ├── bootstrap-datepicker.ua.js │ │ │ │ ├── bootstrap-datepicker.vi.js │ │ │ │ ├── bootstrap-datepicker.zh-CN.js │ │ │ │ └── bootstrap-datepicker.zh-TW.js │ │ ├── daterangepicker │ │ │ ├── daterangepicker.css │ │ │ ├── daterangepicker.js │ │ │ ├── moment.js │ │ │ └── moment.min.js │ │ ├── fastclick │ │ │ ├── fastclick.js │ │ │ └── fastclick.min.js │ │ ├── flot │ │ │ ├── excanvas.js │ │ │ ├── excanvas.min.js │ │ │ ├── jquery.colorhelpers.js │ │ │ ├── jquery.colorhelpers.min.js │ │ │ ├── jquery.flot.canvas.js │ │ │ ├── jquery.flot.canvas.min.js │ │ │ ├── jquery.flot.categories.js │ │ │ ├── jquery.flot.categories.min.js │ │ │ ├── jquery.flot.crosshair.js │ │ │ ├── jquery.flot.crosshair.min.js │ │ │ ├── jquery.flot.errorbars.js │ │ │ ├── jquery.flot.errorbars.min.js │ │ │ ├── jquery.flot.fillbetween.js │ │ │ ├── jquery.flot.fillbetween.min.js │ │ │ ├── jquery.flot.image.js │ │ │ ├── jquery.flot.image.min.js │ │ │ ├── jquery.flot.js │ │ │ ├── jquery.flot.min.js │ │ │ ├── jquery.flot.navigate.js │ │ │ ├── jquery.flot.navigate.min.js │ │ │ ├── jquery.flot.pie.js │ │ │ ├── jquery.flot.pie.min.js │ │ │ ├── jquery.flot.resize.js │ │ │ ├── jquery.flot.resize.min.js │ │ │ ├── jquery.flot.selection.js │ │ │ ├── jquery.flot.selection.min.js │ │ │ ├── jquery.flot.stack.js │ │ │ ├── jquery.flot.stack.min.js │ │ │ ├── jquery.flot.symbol.js │ │ │ ├── jquery.flot.symbol.min.js │ │ │ ├── jquery.flot.threshold.js │ │ │ ├── jquery.flot.threshold.min.js │ │ │ ├── jquery.flot.time.js │ │ │ └── jquery.flot.time.min.js │ │ ├── fullcalendar │ │ │ ├── fullcalendar.css │ │ │ ├── fullcalendar.js │ │ │ ├── fullcalendar.min.css │ │ │ ├── fullcalendar.min.js │ │ │ └── fullcalendar.print.css │ │ ├── iCheck │ │ │ ├── all.css │ │ │ ├── flat │ │ │ │ ├── _all.css │ │ │ │ ├── aero.css │ │ │ │ ├── aero.png │ │ │ │ ├── aero@2x.png │ │ │ │ ├── blue.css │ │ │ │ ├── blue.png │ │ │ │ ├── blue@2x.png │ │ │ │ ├── flat.css │ │ │ │ ├── flat.png │ │ │ │ ├── flat@2x.png │ │ │ │ ├── green.css │ │ │ │ ├── green.png │ │ │ │ ├── green@2x.png │ │ │ │ ├── grey.css │ │ │ │ ├── grey.png │ │ │ │ ├── grey@2x.png │ │ │ │ ├── orange.css │ │ │ │ ├── orange.png │ │ │ │ ├── orange@2x.png │ │ │ │ ├── pink.css │ │ │ │ ├── pink.png │ │ │ │ ├── pink@2x.png │ │ │ │ ├── purple.css │ │ │ │ ├── purple.png │ │ │ │ ├── purple@2x.png │ │ │ │ ├── red.css │ │ │ │ ├── red.png │ │ │ │ ├── red@2x.png │ │ │ │ ├── yellow.css │ │ │ │ ├── yellow.png │ │ │ │ └── yellow@2x.png │ │ │ ├── futurico │ │ │ │ ├── futurico.css │ │ │ │ ├── futurico.png │ │ │ │ └── futurico@2x.png │ │ │ ├── icheck.js │ │ │ ├── icheck.min.js │ │ │ ├── line │ │ │ │ ├── _all.css │ │ │ │ ├── aero.css │ │ │ │ ├── blue.css │ │ │ │ ├── green.css │ │ │ │ ├── grey.css │ │ │ │ ├── line.css │ │ │ │ ├── line.png │ │ │ │ ├── line@2x.png │ │ │ │ ├── orange.css │ │ │ │ ├── pink.css │ │ │ │ ├── purple.css │ │ │ │ ├── red.css │ │ │ │ └── yellow.css │ │ │ ├── minimal │ │ │ │ ├── _all.css │ │ │ │ ├── aero.css │ │ │ │ ├── aero.png │ │ │ │ ├── aero@2x.png │ │ │ │ ├── blue.css │ │ │ │ ├── blue.png │ │ │ │ ├── blue@2x.png │ │ │ │ ├── green.css │ │ │ │ ├── green.png │ │ │ │ ├── green@2x.png │ │ │ │ ├── grey.css │ │ │ │ ├── grey.png │ │ │ │ ├── grey@2x.png │ │ │ │ ├── minimal.css │ │ │ │ ├── minimal.png │ │ │ │ ├── minimal@2x.png │ │ │ │ ├── orange.css │ │ │ │ ├── orange.png │ │ │ │ ├── orange@2x.png │ │ │ │ ├── pink.css │ │ │ │ ├── pink.png │ │ │ │ ├── pink@2x.png │ │ │ │ ├── purple.css │ │ │ │ ├── purple.png │ │ │ │ ├── purple@2x.png │ │ │ │ ├── red.css │ │ │ │ ├── red.png │ │ │ │ ├── red@2x.png │ │ │ │ ├── yellow.css │ │ │ │ ├── yellow.png │ │ │ │ └── yellow@2x.png │ │ │ ├── polaris │ │ │ │ ├── polaris.css │ │ │ │ ├── polaris.png │ │ │ │ └── polaris@2x.png │ │ │ └── square │ │ │ │ ├── _all.css │ │ │ │ ├── aero.css │ │ │ │ ├── aero.png │ │ │ │ ├── aero@2x.png │ │ │ │ ├── blue.css │ │ │ │ ├── blue.png │ │ │ │ ├── blue@2x.png │ │ │ │ ├── green.css │ │ │ │ ├── green.png │ │ │ │ ├── green@2x.png │ │ │ │ ├── grey.css │ │ │ │ ├── grey.png │ │ │ │ ├── grey@2x.png │ │ │ │ ├── orange.css │ │ │ │ ├── orange.png │ │ │ │ ├── orange@2x.png │ │ │ │ ├── pink.css │ │ │ │ ├── pink.png │ │ │ │ ├── pink@2x.png │ │ │ │ ├── purple.css │ │ │ │ ├── purple.png │ │ │ │ ├── purple@2x.png │ │ │ │ ├── red.css │ │ │ │ ├── red.png │ │ │ │ ├── red@2x.png │ │ │ │ ├── square.css │ │ │ │ ├── square.png │ │ │ │ ├── square@2x.png │ │ │ │ ├── yellow.css │ │ │ │ ├── yellow.png │ │ │ │ └── yellow@2x.png │ │ ├── input-mask │ │ │ ├── jquery.inputmask.date.extensions.js │ │ │ ├── jquery.inputmask.extensions.js │ │ │ ├── jquery.inputmask.js │ │ │ ├── jquery.inputmask.numeric.extensions.js │ │ │ ├── jquery.inputmask.phone.extensions.js │ │ │ ├── jquery.inputmask.regex.extensions.js │ │ │ └── phone-codes │ │ │ │ ├── phone-be.json │ │ │ │ ├── phone-codes.json │ │ │ │ └── readme.txt │ │ ├── ionslider │ │ │ ├── img │ │ │ │ ├── sprite-skin-flat.png │ │ │ │ └── sprite-skin-nice.png │ │ │ ├── ion.rangeSlider.css │ │ │ ├── ion.rangeSlider.min.js │ │ │ ├── ion.rangeSlider.skinFlat.css │ │ │ └── ion.rangeSlider.skinNice.css │ │ ├── jQuery │ │ │ └── jquery-2.2.3.min.js │ │ ├── jQueryUI │ │ │ ├── jquery-ui.js │ │ │ └── jquery-ui.min.js │ │ ├── jvectormap │ │ │ ├── jquery-jvectormap-1.2.2.css │ │ │ ├── jquery-jvectormap-1.2.2.min.js │ │ │ ├── jquery-jvectormap-usa-en.js │ │ │ └── jquery-jvectormap-world-mill-en.js │ │ ├── knob │ │ │ └── jquery.knob.js │ │ ├── morris │ │ │ ├── morris.css │ │ │ ├── morris.js │ │ │ └── morris.min.js │ │ ├── pace │ │ │ ├── pace.css │ │ │ ├── pace.js │ │ │ ├── pace.min.css │ │ │ └── pace.min.js │ │ ├── select2 │ │ │ ├── i18n │ │ │ │ ├── ar.js │ │ │ │ ├── az.js │ │ │ │ ├── bg.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── is.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── ms.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-BR.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── sk.js │ │ │ │ ├── sr-Cyrl.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-CN.js │ │ │ │ └── zh-TW.js │ │ │ ├── select2.css │ │ │ ├── select2.full.js │ │ │ ├── select2.full.min.js │ │ │ ├── select2.js │ │ │ ├── select2.min.css │ │ │ └── select2.min.js │ │ ├── slimScroll │ │ │ ├── jquery.slimscroll.js │ │ │ └── jquery.slimscroll.min.js │ │ ├── sparkline │ │ │ ├── jquery.sparkline.js │ │ │ └── jquery.sparkline.min.js │ │ └── timepicker │ │ │ ├── bootstrap-timepicker.css │ │ │ ├── bootstrap-timepicker.js │ │ │ ├── bootstrap-timepicker.min.css │ │ │ └── bootstrap-timepicker.min.js │ ├── starter.html │ └── yarn.lock ├── Chart.js-master │ ├── .gitignore │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── Chart.js │ ├── Chart.min.js │ ├── Chart_pie.js │ ├── LICENSE.md │ ├── README.md │ ├── bower.json │ ├── composer.json │ ├── docs │ │ ├── 00-Getting-Started.md │ │ ├── 01-Line-Chart.md │ │ ├── 02-Bar-Chart.md │ │ ├── 03-Radar-Chart.md │ │ ├── 04-Polar-Area-Chart.md │ │ ├── 05-Pie-Doughnut-Chart.md │ │ ├── 06-Advanced.md │ │ └── 07-Notes.md │ ├── gulpfile.js │ ├── package.json │ ├── samples │ │ ├── bar.html │ │ ├── doughnut.color.html │ │ ├── doughnut.html │ │ ├── line-customTooltips.html │ │ ├── line.html │ │ ├── pie-customTooltips.html │ │ ├── pie.html │ │ ├── polar-area.html │ │ ├── radar.html │ │ └── tooltip.html │ └── src │ │ ├── Chart.Bar.js │ │ ├── Chart.Core.js │ │ ├── Chart.Doughnut.js │ │ ├── Chart.Line.js │ │ ├── Chart.PolarArea.js │ │ └── Chart.Radar.js ├── DataTables-1.10.15 │ ├── Contributing.md │ ├── ISSUE_TEMPLATE.md │ ├── Readme.md │ ├── examples │ │ ├── advanced_init │ │ │ ├── column_render.html │ │ │ ├── complex_header.html │ │ │ ├── defaults.html │ │ │ ├── dom_multiple_elements.html │ │ │ ├── dom_toolbar.html │ │ │ ├── dt_events.html │ │ │ ├── events_live.html │ │ │ ├── footer_callback.html │ │ │ ├── html5-data-attributes.html │ │ │ ├── html5-data-options.html │ │ │ ├── index.html │ │ │ ├── language_file.html │ │ │ ├── length_menu.html │ │ │ ├── object_dom_read.html │ │ │ ├── row_callback.html │ │ │ ├── row_grouping.html │ │ │ └── sort_direction_control.html │ │ ├── ajax │ │ │ ├── custom_data_flat.html │ │ │ ├── custom_data_property.html │ │ │ ├── data │ │ │ │ ├── arrays.txt │ │ │ │ ├── arrays_custom_prop.txt │ │ │ │ ├── arrays_subobjects.txt │ │ │ │ ├── objects.txt │ │ │ │ ├── objects_deep.txt │ │ │ │ ├── objects_root_array.txt │ │ │ │ ├── objects_subarrays.txt │ │ │ │ └── orthogonal.txt │ │ │ ├── deep.html │ │ │ ├── defer_render.html │ │ │ ├── index.html │ │ │ ├── null_data_source.html │ │ │ ├── objects.html │ │ │ ├── objects_subarrays.html │ │ │ ├── orthogonal-data.html │ │ │ └── simple.html │ │ ├── api │ │ │ ├── add_row.html │ │ │ ├── api_in_init.html │ │ │ ├── counter_columns.html │ │ │ ├── form.html │ │ │ ├── highlight.html │ │ │ ├── index.html │ │ │ ├── multi_filter.html │ │ │ ├── multi_filter_select.html │ │ │ ├── regex.html │ │ │ ├── row_details.html │ │ │ ├── select_row.html │ │ │ ├── select_single_row.html │ │ │ ├── show_hide.html │ │ │ └── tabs_and_scrolling.html │ │ ├── basic_init │ │ │ ├── alt_pagination.html │ │ │ ├── comma-decimal.html │ │ │ ├── complex_header.html │ │ │ ├── dom.html │ │ │ ├── filter_only.html │ │ │ ├── flexible_width.html │ │ │ ├── hidden_columns.html │ │ │ ├── index.html │ │ │ ├── language.html │ │ │ ├── multi_col_sort.html │ │ │ ├── multiple_tables.html │ │ │ ├── scroll_x.html │ │ │ ├── scroll_xy.html │ │ │ ├── scroll_y.html │ │ │ ├── scroll_y_dynamic.html │ │ │ ├── state_save.html │ │ │ ├── table_sorting.html │ │ │ └── zero_configuration.html │ │ ├── data_sources │ │ │ ├── ajax.html │ │ │ ├── dom.html │ │ │ ├── index.html │ │ │ ├── js_array.html │ │ │ └── server_side.html │ │ ├── index.html │ │ ├── plug-ins │ │ │ ├── api.html │ │ │ ├── dom_sort.html │ │ │ ├── index.html │ │ │ ├── range_filtering.html │ │ │ ├── sorting_auto.html │ │ │ └── sorting_manual.html │ │ ├── resources │ │ │ ├── demo.css │ │ │ ├── demo.js │ │ │ ├── details_close.png │ │ │ ├── details_open.png │ │ │ ├── examples.php │ │ │ └── syntax │ │ │ │ ├── Syntax Highlighter license │ │ │ │ ├── shCore.css │ │ │ │ └── shCore.js │ │ ├── server_side │ │ │ ├── custom_vars.html │ │ │ ├── defer_loading.html │ │ │ ├── ids.html │ │ │ ├── index.html │ │ │ ├── jsonp.html │ │ │ ├── object_data.html │ │ │ ├── pipeline.html │ │ │ ├── post.html │ │ │ ├── row_details.html │ │ │ ├── scripts │ │ │ │ ├── ids-arrays.php │ │ │ │ ├── ids-objects.php │ │ │ │ ├── jsonp.php │ │ │ │ ├── mysql.sql │ │ │ │ ├── objects.php │ │ │ │ ├── oracle.sql │ │ │ │ ├── post.php │ │ │ │ ├── postgres.sql │ │ │ │ ├── server_processing.php │ │ │ │ ├── sqlite.sql │ │ │ │ ├── sqlserver.sql │ │ │ │ └── ssp.class.php │ │ │ ├── select_rows.html │ │ │ └── simple.html │ │ └── styling │ │ │ ├── bootstrap.html │ │ │ ├── bootstrap4.html │ │ │ ├── cell-border.html │ │ │ ├── compact.html │ │ │ ├── display.html │ │ │ ├── foundation.html │ │ │ ├── hover.html │ │ │ ├── index.html │ │ │ ├── jqueryUI.html │ │ │ ├── material.html │ │ │ ├── no-classes.html │ │ │ ├── order-column.html │ │ │ ├── row-border.html │ │ │ ├── semanticui.html │ │ │ ├── stripe.html │ │ │ └── uikit.html │ ├── extensions │ │ ├── AutoFill │ │ │ ├── License.txt │ │ │ ├── Readme.md │ │ │ ├── css │ │ │ │ ├── autoFill.bootstrap.css │ │ │ │ ├── autoFill.bootstrap.min.css │ │ │ │ ├── autoFill.bootstrap4.css │ │ │ │ ├── autoFill.bootstrap4.min.css │ │ │ │ ├── autoFill.dataTables.css │ │ │ │ ├── autoFill.dataTables.min.css │ │ │ │ ├── autoFill.foundation.css │ │ │ │ ├── autoFill.foundation.min.css │ │ │ │ ├── autoFill.jqueryui.css │ │ │ │ ├── autoFill.jqueryui.min.css │ │ │ │ ├── autoFill.semanticui.css │ │ │ │ └── autoFill.semanticui.min.css │ │ │ ├── examples │ │ │ │ ├── index.html │ │ │ │ ├── initialisation │ │ │ │ │ ├── alwaysAsk.html │ │ │ │ │ ├── columns.html │ │ │ │ │ ├── enableDisable.html │ │ │ │ │ ├── events.html │ │ │ │ │ ├── fills.html │ │ │ │ │ ├── focus.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── keyTable.html │ │ │ │ │ ├── plugins.html │ │ │ │ │ ├── scrolling.html │ │ │ │ │ └── simple.html │ │ │ │ └── styling │ │ │ │ │ ├── bootstrap.html │ │ │ │ │ ├── bootstrap4.html │ │ │ │ │ ├── foundation.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── jqueryui.html │ │ │ │ │ └── semanticui.html │ │ │ └── js │ │ │ │ ├── autoFill.bootstrap.js │ │ │ │ ├── autoFill.bootstrap.min.js │ │ │ │ ├── autoFill.bootstrap4.js │ │ │ │ ├── autoFill.bootstrap4.min.js │ │ │ │ ├── autoFill.foundation.js │ │ │ │ ├── autoFill.foundation.min.js │ │ │ │ ├── autoFill.jqueryui.js │ │ │ │ ├── autoFill.jqueryui.min.js │ │ │ │ ├── autoFill.semanticui.js │ │ │ │ ├── autoFill.semanticui.min.js │ │ │ │ ├── dataTables.autoFill.js │ │ │ │ └── dataTables.autoFill.min.js │ │ ├── Buttons │ │ │ ├── License.txt │ │ │ ├── Readme.md │ │ │ ├── css │ │ │ │ ├── buttons.bootstrap.css │ │ │ │ ├── buttons.bootstrap.min.css │ │ │ │ ├── buttons.bootstrap4.css │ │ │ │ ├── buttons.bootstrap4.min.css │ │ │ │ ├── buttons.dataTables.css │ │ │ │ ├── buttons.dataTables.min.css │ │ │ │ ├── buttons.foundation.css │ │ │ │ ├── buttons.foundation.min.css │ │ │ │ ├── buttons.jqueryui.css │ │ │ │ ├── buttons.jqueryui.min.css │ │ │ │ ├── buttons.semanticui.css │ │ │ │ ├── buttons.semanticui.min.css │ │ │ │ ├── common.scss │ │ │ │ └── mixins.scss │ │ │ ├── examples │ │ │ │ ├── api │ │ │ │ │ ├── addRemove.html │ │ │ │ │ ├── enable.html │ │ │ │ │ ├── group.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── text.html │ │ │ │ ├── column_visibility │ │ │ │ │ ├── columnGroups.html │ │ │ │ │ ├── columnText.html │ │ │ │ │ ├── columns.html │ │ │ │ │ ├── columnsToggle.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── layout.html │ │ │ │ │ ├── restore.html │ │ │ │ │ ├── simple.html │ │ │ │ │ ├── stateSave.html │ │ │ │ │ └── text.html │ │ │ │ ├── flash │ │ │ │ │ ├── copyi18n.html │ │ │ │ │ ├── filename.html │ │ │ │ │ ├── hidden.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── pdfMessage.html │ │ │ │ │ ├── pdfPage.html │ │ │ │ │ ├── simple.html │ │ │ │ │ ├── swfPath.html │ │ │ │ │ └── tsv.html │ │ │ │ ├── html5 │ │ │ │ │ ├── columns.html │ │ │ │ │ ├── copyi18n.html │ │ │ │ │ ├── customFile.html │ │ │ │ │ ├── excelBorder.html │ │ │ │ │ ├── excelCellShading.html │ │ │ │ │ ├── excelTextBold.html │ │ │ │ │ ├── filename.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── outputFormat-function.html │ │ │ │ │ ├── outputFormat-orthogonal.html │ │ │ │ │ ├── pdfImage.html │ │ │ │ │ ├── pdfMessage.html │ │ │ │ │ ├── pdfOpen.html │ │ │ │ │ ├── pdfPage.html │ │ │ │ │ ├── simple.html │ │ │ │ │ └── tsv.html │ │ │ │ ├── index.html │ │ │ │ ├── initialisation │ │ │ │ │ ├── className.html │ │ │ │ │ ├── collections-autoClose.html │ │ │ │ │ ├── collections-sub.html │ │ │ │ │ ├── collections.html │ │ │ │ │ ├── custom.html │ │ │ │ │ ├── export.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── keys.html │ │ │ │ │ ├── multiple.html │ │ │ │ │ ├── new.html │ │ │ │ │ ├── pageLength.html │ │ │ │ │ ├── plugins.html │ │ │ │ │ └── simple.html │ │ │ │ ├── print │ │ │ │ │ ├── autoPrint.html │ │ │ │ │ ├── columns.html │ │ │ │ │ ├── customisation.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── message.html │ │ │ │ │ ├── select.html │ │ │ │ │ └── simple.html │ │ │ │ └── styling │ │ │ │ │ ├── bootstrap.html │ │ │ │ │ ├── bootstrap4.html │ │ │ │ │ ├── foundation.html │ │ │ │ │ ├── icons.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── jqueryui.html │ │ │ │ │ └── semanticui.html │ │ │ ├── js │ │ │ │ ├── buttons.bootstrap.js │ │ │ │ ├── buttons.bootstrap.min.js │ │ │ │ ├── buttons.bootstrap4.js │ │ │ │ ├── buttons.bootstrap4.min.js │ │ │ │ ├── buttons.colVis.js │ │ │ │ ├── buttons.colVis.min.js │ │ │ │ ├── buttons.flash.js │ │ │ │ ├── buttons.flash.min.js │ │ │ │ ├── buttons.foundation.js │ │ │ │ ├── buttons.foundation.min.js │ │ │ │ ├── buttons.html5.js │ │ │ │ ├── buttons.html5.min.js │ │ │ │ ├── buttons.jqueryui.js │ │ │ │ ├── buttons.jqueryui.min.js │ │ │ │ ├── buttons.print.js │ │ │ │ ├── buttons.print.min.js │ │ │ │ ├── buttons.semanticui.js │ │ │ │ ├── buttons.semanticui.min.js │ │ │ │ ├── dataTables.buttons.js │ │ │ │ └── dataTables.buttons.min.js │ │ │ └── swf │ │ │ │ └── flashExport.swf │ │ ├── ColReorder │ │ │ ├── License.txt │ │ │ ├── Readme.md │ │ │ ├── css │ │ │ │ ├── colReorder.bootstrap.css │ │ │ │ ├── colReorder.bootstrap.min.css │ │ │ │ ├── colReorder.bootstrap4.css │ │ │ │ ├── colReorder.bootstrap4.min.css │ │ │ │ ├── colReorder.dataTables.css │ │ │ │ ├── colReorder.dataTables.min.css │ │ │ │ ├── colReorder.foundation.css │ │ │ │ ├── colReorder.foundation.min.css │ │ │ │ ├── colReorder.jqueryui.css │ │ │ │ ├── colReorder.jqueryui.min.css │ │ │ │ ├── colReorder.semanticui.css │ │ │ │ └── colReorder.semanticui.min.css │ │ │ ├── examples │ │ │ │ ├── index.html │ │ │ │ ├── initialisation │ │ │ │ │ ├── col_filter.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── new_init.html │ │ │ │ │ ├── predefined.html │ │ │ │ │ ├── realtime.html │ │ │ │ │ ├── reset.html │ │ │ │ │ ├── scrolling.html │ │ │ │ │ └── simple.html │ │ │ │ ├── integration │ │ │ │ │ ├── colvis.html │ │ │ │ │ ├── fixedcolumns.html │ │ │ │ │ ├── fixedheader.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── responsive.html │ │ │ │ │ ├── server_side.html │ │ │ │ │ └── state_save.html │ │ │ │ └── styling │ │ │ │ │ ├── alt_insert.html │ │ │ │ │ ├── bootstrap.html │ │ │ │ │ ├── bootstrap4.html │ │ │ │ │ ├── foundation.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── jqueryui.html │ │ │ │ │ └── semanticui.html │ │ │ └── js │ │ │ │ ├── dataTables.colReorder.js │ │ │ │ └── dataTables.colReorder.min.js │ │ ├── FixedColumns │ │ │ ├── License.txt │ │ │ ├── Readme.md │ │ │ ├── css │ │ │ │ ├── fixedColumns.bootstrap.css │ │ │ │ ├── fixedColumns.bootstrap.min.css │ │ │ │ ├── fixedColumns.bootstrap4.css │ │ │ │ ├── fixedColumns.bootstrap4.min.css │ │ │ │ ├── fixedColumns.dataTables.css │ │ │ │ ├── fixedColumns.dataTables.min.css │ │ │ │ ├── fixedColumns.foundation.css │ │ │ │ ├── fixedColumns.foundation.min.css │ │ │ │ ├── fixedColumns.jqueryui.css │ │ │ │ ├── fixedColumns.jqueryui.min.css │ │ │ │ ├── fixedColumns.semanticui.css │ │ │ │ └── fixedColumns.semanticui.min.css │ │ │ ├── examples │ │ │ │ ├── index.html │ │ │ │ ├── initialisation │ │ │ │ │ ├── colvis.html │ │ │ │ │ ├── css_size.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── index_column.html │ │ │ │ │ ├── left_right_columns.html │ │ │ │ │ ├── right_column.html │ │ │ │ │ ├── server-side-processing.html │ │ │ │ │ ├── simple.html │ │ │ │ │ ├── size_fixed.html │ │ │ │ │ ├── size_fluid.html │ │ │ │ │ └── two_columns.html │ │ │ │ ├── integration │ │ │ │ │ ├── api.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── select-checkbox.html │ │ │ │ │ └── select.html │ │ │ │ └── styling │ │ │ │ │ ├── bootstrap.html │ │ │ │ │ ├── bootstrap4.html │ │ │ │ │ ├── col_filter.html │ │ │ │ │ ├── colvis.html │ │ │ │ │ ├── foundation.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── jqueryui.html │ │ │ │ │ ├── rowspan.html │ │ │ │ │ ├── rtl.html │ │ │ │ │ ├── semanticui.html │ │ │ │ │ └── server-side-processing.html │ │ │ └── js │ │ │ │ ├── dataTables.fixedColumns.js │ │ │ │ └── dataTables.fixedColumns.min.js │ │ ├── FixedHeader │ │ │ ├── License.txt │ │ │ ├── Readme.md │ │ │ ├── css │ │ │ │ ├── fixedHeader.bootstrap.css │ │ │ │ ├── fixedHeader.bootstrap.min.css │ │ │ │ ├── fixedHeader.bootstrap4.css │ │ │ │ ├── fixedHeader.bootstrap4.min.css │ │ │ │ ├── fixedHeader.dataTables.css │ │ │ │ ├── fixedHeader.dataTables.min.css │ │ │ │ ├── fixedHeader.foundation.css │ │ │ │ ├── fixedHeader.foundation.min.css │ │ │ │ ├── fixedHeader.jqueryui.css │ │ │ │ ├── fixedHeader.jqueryui.min.css │ │ │ │ ├── fixedHeader.semanticui.css │ │ │ │ └── fixedHeader.semanticui.min.css │ │ │ ├── examples │ │ │ │ ├── index.html │ │ │ │ ├── integration │ │ │ │ │ ├── buttons.html │ │ │ │ │ ├── colreorder.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── responsive-bootstrap.html │ │ │ │ │ └── responsive.html │ │ │ │ ├── options │ │ │ │ │ ├── enable-disable.html │ │ │ │ │ ├── header_footer.html │ │ │ │ │ ├── horizontal-scroll.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── new.html │ │ │ │ │ ├── offset-automatic.html │ │ │ │ │ ├── offset.html │ │ │ │ │ ├── show-hide.html │ │ │ │ │ ├── simple.html │ │ │ │ │ └── two_tables.html │ │ │ │ └── styling │ │ │ │ │ ├── bootstrap.html │ │ │ │ │ ├── bootstrap4.html │ │ │ │ │ ├── foundation.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── jqueryui.html │ │ │ │ │ └── semanticui.html │ │ │ └── js │ │ │ │ ├── dataTables.fixedHeader.js │ │ │ │ └── dataTables.fixedHeader.min.js │ │ ├── KeyTable │ │ │ ├── License.txt │ │ │ ├── Readme.md │ │ │ ├── css │ │ │ │ ├── keyTable.bootstrap.css │ │ │ │ ├── keyTable.bootstrap.min.css │ │ │ │ ├── keyTable.bootstrap4.css │ │ │ │ ├── keyTable.bootstrap4.min.css │ │ │ │ ├── keyTable.dataTables.css │ │ │ │ ├── keyTable.dataTables.min.css │ │ │ │ ├── keyTable.foundation.css │ │ │ │ ├── keyTable.foundation.min.css │ │ │ │ ├── keyTable.jqueryui.css │ │ │ │ ├── keyTable.jqueryui.min.css │ │ │ │ ├── keyTable.semanticui.css │ │ │ │ └── keyTable.semanticui.min.css │ │ │ ├── examples │ │ │ │ ├── index.html │ │ │ │ ├── initialisation │ │ │ │ │ ├── blurable.html │ │ │ │ │ ├── events.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── scroller.html │ │ │ │ │ ├── scrolling.html │ │ │ │ │ ├── server-side.html │ │ │ │ │ ├── simple.html │ │ │ │ │ └── stateSave.html │ │ │ │ └── styling │ │ │ │ │ ├── bootstrap.html │ │ │ │ │ ├── bootstrap4.html │ │ │ │ │ ├── focusStyle.html │ │ │ │ │ ├── foundation.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── jqueryui.html │ │ │ │ │ └── semanticui.html │ │ │ └── js │ │ │ │ ├── dataTables.keyTable.js │ │ │ │ └── dataTables.keyTable.min.js │ │ ├── Responsive │ │ │ ├── License.txt │ │ │ ├── Readme.md │ │ │ ├── css │ │ │ │ ├── responsive.bootstrap.css │ │ │ │ ├── responsive.bootstrap.min.css │ │ │ │ ├── responsive.bootstrap4.css │ │ │ │ ├── responsive.bootstrap4.min.css │ │ │ │ ├── responsive.dataTables.css │ │ │ │ ├── responsive.dataTables.min.css │ │ │ │ ├── responsive.foundation.css │ │ │ │ ├── responsive.foundation.min.css │ │ │ │ ├── responsive.jqueryui.css │ │ │ │ ├── responsive.jqueryui.min.css │ │ │ │ ├── responsive.semanticui.css │ │ │ │ └── responsive.semanticui.min.css │ │ │ ├── examples │ │ │ │ ├── child-rows │ │ │ │ │ ├── column-control.html │ │ │ │ │ ├── custom-renderer.html │ │ │ │ │ ├── disable-child-rows.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── right-column.html │ │ │ │ │ └── whole-row-control.html │ │ │ │ ├── column-control │ │ │ │ │ ├── auto.html │ │ │ │ │ ├── classes.html │ │ │ │ │ ├── colreorder.html │ │ │ │ │ ├── column-visibility.html │ │ │ │ │ ├── columnPriority.html │ │ │ │ │ ├── fixedHeader.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── init-classes.html │ │ │ │ ├── display-types │ │ │ │ │ ├── bootstrap-modal.html │ │ │ │ │ ├── bootstrap4-modal.html │ │ │ │ │ ├── foundation-modal.html │ │ │ │ │ ├── immediateShow.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── jqueryui-modal.html │ │ │ │ │ ├── modal.html │ │ │ │ │ └── semanticui-modal.html │ │ │ │ ├── index.html │ │ │ │ ├── initialisation │ │ │ │ │ ├── ajax.html │ │ │ │ │ ├── className.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── new.html │ │ │ │ │ └── option.html │ │ │ │ └── styling │ │ │ │ │ ├── bootstrap.html │ │ │ │ │ ├── bootstrap4.html │ │ │ │ │ ├── compact.html │ │ │ │ │ ├── foundation.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── jqueryui.html │ │ │ │ │ ├── scrolling.html │ │ │ │ │ └── semanticui.html │ │ │ └── js │ │ │ │ ├── dataTables.responsive.js │ │ │ │ ├── dataTables.responsive.min.js │ │ │ │ ├── responsive.bootstrap.js │ │ │ │ ├── responsive.bootstrap.min.js │ │ │ │ ├── responsive.bootstrap4.js │ │ │ │ ├── responsive.bootstrap4.min.js │ │ │ │ ├── responsive.foundation.js │ │ │ │ ├── responsive.foundation.min.js │ │ │ │ ├── responsive.jqueryui.js │ │ │ │ ├── responsive.jqueryui.min.js │ │ │ │ ├── responsive.semanticui.js │ │ │ │ └── responsive.semanticui.min.js │ │ ├── RowGroup │ │ │ ├── License.txt │ │ │ ├── Readme.md │ │ │ ├── css │ │ │ │ ├── rowGroup.bootstrap.css │ │ │ │ ├── rowGroup.bootstrap.min.css │ │ │ │ ├── rowGroup.bootstrap4.css │ │ │ │ ├── rowGroup.bootstrap4.min.css │ │ │ │ ├── rowGroup.dataTables.css │ │ │ │ ├── rowGroup.dataTables.min.css │ │ │ │ ├── rowGroup.foundation.css │ │ │ │ ├── rowGroup.foundation.min.css │ │ │ │ ├── rowGroup.jqueryui.css │ │ │ │ ├── rowGroup.jqueryui.min.css │ │ │ │ ├── rowGroup.semanticui.css │ │ │ │ └── rowGroup.semanticui.min.css │ │ │ ├── examples │ │ │ │ ├── index.html │ │ │ │ ├── initialisation │ │ │ │ │ ├── ajaxObjects.html │ │ │ │ │ ├── customRow.html │ │ │ │ │ ├── endRender.html │ │ │ │ │ ├── event.html │ │ │ │ │ ├── fixedOrdering.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── simple.html │ │ │ │ │ └── startAndEndRender.html │ │ │ │ └── styling │ │ │ │ │ ├── bootstrap.html │ │ │ │ │ ├── bootstrap4.html │ │ │ │ │ ├── foundation.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── jqueryui.html │ │ │ │ │ └── semanticui.html │ │ │ └── js │ │ │ │ ├── dataTables.rowGroup.js │ │ │ │ └── dataTables.rowGroup.min.js │ │ ├── RowReorder │ │ │ ├── License.txt │ │ │ ├── Readme.md │ │ │ ├── css │ │ │ │ ├── rowReorder.bootstrap.css │ │ │ │ ├── rowReorder.bootstrap.min.css │ │ │ │ ├── rowReorder.bootstrap4.css │ │ │ │ ├── rowReorder.bootstrap4.min.css │ │ │ │ ├── rowReorder.dataTables.css │ │ │ │ ├── rowReorder.dataTables.min.css │ │ │ │ ├── rowReorder.foundation.css │ │ │ │ ├── rowReorder.foundation.min.css │ │ │ │ ├── rowReorder.jqueryui.css │ │ │ │ ├── rowReorder.jqueryui.min.css │ │ │ │ ├── rowReorder.semanticui.css │ │ │ │ ├── rowReorder.semanticui.min.css │ │ │ │ └── semanticui.scss │ │ │ ├── examples │ │ │ │ ├── index.html │ │ │ │ ├── initialisation │ │ │ │ │ ├── defaults.html │ │ │ │ │ ├── events.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── responsive.html │ │ │ │ │ ├── restrictedOrdering.html │ │ │ │ │ ├── scroll.html │ │ │ │ │ ├── selector.html │ │ │ │ │ └── simple.html │ │ │ │ └── styling │ │ │ │ │ ├── bootstrap.html │ │ │ │ │ ├── bootstrap4.html │ │ │ │ │ ├── foundation.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── jqueryui.html │ │ │ │ │ ├── reorderClass.html │ │ │ │ │ ├── semanticui.html │ │ │ │ │ └── snapX.html │ │ │ └── js │ │ │ │ ├── dataTables.rowReorder.js │ │ │ │ └── dataTables.rowReorder.min.js │ │ ├── Scroller │ │ │ ├── License.txt │ │ │ ├── Readme.md │ │ │ ├── css │ │ │ │ ├── scroller.bootstrap.css │ │ │ │ ├── scroller.bootstrap.min.css │ │ │ │ ├── scroller.bootstrap4.css │ │ │ │ ├── scroller.bootstrap4.min.css │ │ │ │ ├── scroller.dataTables.css │ │ │ │ ├── scroller.dataTables.min.css │ │ │ │ ├── scroller.foundation.css │ │ │ │ ├── scroller.foundation.min.css │ │ │ │ ├── scroller.jqueryui.css │ │ │ │ ├── scroller.jqueryui.min.css │ │ │ │ ├── scroller.semanticui.css │ │ │ │ └── scroller.semanticui.min.css │ │ │ ├── examples │ │ │ │ ├── data │ │ │ │ │ ├── 2500.txt │ │ │ │ │ └── ssp.php │ │ │ │ ├── index.html │ │ │ │ ├── initialisation │ │ │ │ │ ├── api_scrolling.html │ │ │ │ │ ├── fixedColumns.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── large_js_source.html │ │ │ │ │ ├── select.html │ │ │ │ │ ├── server-side_processing.html │ │ │ │ │ ├── simple.html │ │ │ │ │ └── state_saving.html │ │ │ │ └── styling │ │ │ │ │ ├── bootstrap.html │ │ │ │ │ ├── bootstrap4.html │ │ │ │ │ ├── foundation.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── jqueryui.html │ │ │ │ │ └── semanticui.html │ │ │ └── js │ │ │ │ ├── dataTables.scroller.js │ │ │ │ └── dataTables.scroller.min.js │ │ └── Select │ │ │ ├── License.txt │ │ │ ├── Readme.md │ │ │ ├── css │ │ │ ├── select.bootstrap.css │ │ │ ├── select.bootstrap.min.css │ │ │ ├── select.bootstrap4.css │ │ │ ├── select.bootstrap4.min.css │ │ │ ├── select.dataTables.css │ │ │ ├── select.dataTables.min.css │ │ │ ├── select.foundation.css │ │ │ ├── select.foundation.min.css │ │ │ ├── select.jqueryui.css │ │ │ ├── select.jqueryui.min.css │ │ │ ├── select.semanticui.css │ │ │ └── select.semanticui.min.css │ │ │ ├── examples │ │ │ ├── api │ │ │ │ ├── cancellableEvents.html │ │ │ │ ├── events.html │ │ │ │ ├── get.html │ │ │ │ ├── index.html │ │ │ │ └── select.html │ │ │ ├── index.html │ │ │ ├── initialisation │ │ │ │ ├── blurable.html │ │ │ │ ├── buttons.html │ │ │ │ ├── cells.html │ │ │ │ ├── checkbox.html │ │ │ │ ├── deferRender.html │ │ │ │ ├── i18n.html │ │ │ │ ├── index.html │ │ │ │ ├── multi.html │ │ │ │ ├── reload.html │ │ │ │ ├── simple.html │ │ │ │ └── single.html │ │ │ └── styling │ │ │ │ ├── bootstrap.html │ │ │ │ ├── bootstrap4.html │ │ │ │ ├── foundation.html │ │ │ │ ├── index.html │ │ │ │ ├── jqueryui.html │ │ │ │ └── semanticui.html │ │ │ └── js │ │ │ ├── dataTables.select.js │ │ │ └── dataTables.select.min.js │ ├── license.txt │ └── media │ │ ├── css │ │ ├── dataTables.bootstrap.css │ │ ├── dataTables.bootstrap.min.css │ │ ├── dataTables.bootstrap4.css │ │ ├── dataTables.bootstrap4.min.css │ │ ├── dataTables.foundation.css │ │ ├── dataTables.foundation.min.css │ │ ├── dataTables.jqueryui.css │ │ ├── dataTables.jqueryui.min.css │ │ ├── dataTables.material.css │ │ ├── dataTables.material.min.css │ │ ├── dataTables.semanticui.css │ │ ├── dataTables.semanticui.min.css │ │ ├── dataTables.uikit.css │ │ ├── dataTables.uikit.min.css │ │ ├── jquery.dataTables.css │ │ ├── jquery.dataTables.min.css │ │ └── jquery.dataTables_themeroller.css │ │ ├── images │ │ ├── Sorting icons.psd │ │ ├── favicon.ico │ │ ├── sort_asc.png │ │ ├── sort_asc_disabled.png │ │ ├── sort_both.png │ │ ├── sort_desc.png │ │ └── sort_desc_disabled.png │ │ └── js │ │ ├── dataTables.bootstrap.js │ │ ├── dataTables.bootstrap.min.js │ │ ├── dataTables.bootstrap4.js │ │ ├── dataTables.bootstrap4.min.js │ │ ├── dataTables.foundation.js │ │ ├── dataTables.foundation.min.js │ │ ├── dataTables.jqueryui.js │ │ ├── dataTables.jqueryui.min.js │ │ ├── dataTables.material.js │ │ ├── dataTables.material.min.js │ │ ├── dataTables.semanticui.js │ │ ├── dataTables.semanticui.min.js │ │ ├── dataTables.uikit.js │ │ ├── dataTables.uikit.min.js │ │ ├── jquery.dataTables.js │ │ ├── jquery.dataTables.min.js │ │ └── jquery.js ├── Gallery │ ├── css │ │ ├── blueimp-gallery-indicator.css │ │ ├── blueimp-gallery-video.css │ │ ├── blueimp-gallery.css │ │ ├── blueimp-gallery.min.css │ │ ├── blueimp-gallery.min.css.map │ │ └── demo │ │ │ └── demo.css │ ├── img │ │ ├── error.png │ │ ├── error.svg │ │ ├── loading.gif │ │ ├── play-pause.png │ │ ├── play-pause.svg │ │ ├── video-play.png │ │ └── video-play.svg │ └── js │ │ ├── blueimp-gallery-fullscreen.js │ │ ├── blueimp-gallery-indicator.js │ │ ├── blueimp-gallery-video.js │ │ ├── blueimp-gallery-vimeo.js │ │ ├── blueimp-gallery-youtube.js │ │ ├── blueimp-gallery.js │ │ ├── blueimp-gallery.min.js │ │ ├── blueimp-gallery.min.js.map │ │ ├── blueimp-helper.js │ │ ├── demo │ │ └── demo.js │ │ ├── jquery.blueimp-gallery.js │ │ ├── jquery.blueimp-gallery.min.js │ │ ├── jquery.blueimp-gallery.min.js.map │ │ └── vendor │ │ └── jquery.js ├── autocomplete │ ├── jquery-ui.css │ └── jquery-ui.js ├── css │ ├── font-awesome.min.css │ └── ionicons.min.css ├── fonts │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 ├── grocery_crud │ ├── config │ │ ├── index.html │ │ ├── language_alias.php │ │ └── translit_chars.php │ ├── css │ │ ├── index.html │ │ ├── jquery_plugins │ │ │ ├── chosen │ │ │ │ ├── chosen-sprite.png │ │ │ │ ├── chosen-sprite@2x.png │ │ │ │ ├── chosen.css │ │ │ │ ├── chosen.min.css │ │ │ │ └── index.html │ │ │ ├── fancybox │ │ │ │ ├── blank.gif │ │ │ │ ├── fancy_close.png │ │ │ │ ├── fancy_loading.png │ │ │ │ ├── fancy_nav_left.png │ │ │ │ ├── fancy_nav_right.png │ │ │ │ ├── fancy_shadow_e.png │ │ │ │ ├── fancy_shadow_n.png │ │ │ │ ├── fancy_shadow_ne.png │ │ │ │ ├── fancy_shadow_nw.png │ │ │ │ ├── fancy_shadow_s.png │ │ │ │ ├── fancy_shadow_se.png │ │ │ │ ├── fancy_shadow_sw.png │ │ │ │ ├── fancy_shadow_w.png │ │ │ │ ├── fancy_title_left.png │ │ │ │ ├── fancy_title_main.png │ │ │ │ ├── fancy_title_over.png │ │ │ │ ├── fancy_title_right.png │ │ │ │ ├── fancybox-x.png │ │ │ │ ├── fancybox-y.png │ │ │ │ ├── fancybox.png │ │ │ │ └── jquery.fancybox.css │ │ │ ├── file_upload │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── file-uploader.css │ │ │ │ ├── fileuploader.css │ │ │ │ ├── jquery.fileupload-ui.css │ │ │ │ ├── loading.gif │ │ │ │ └── progressbar.gif │ │ │ ├── index.html │ │ │ ├── jquery-ui-timepicker-addon.css │ │ │ ├── jquery.ui.datetime.css │ │ │ └── ui.multiselect.css │ │ └── ui │ │ │ ├── index.html │ │ │ └── simple │ │ │ ├── images │ │ │ ├── animated-overlay.gif │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_333333_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ ├── index.html │ │ │ └── jquery-ui-1.10.1.custom.min.css │ ├── index.html │ ├── js │ │ ├── common │ │ │ ├── lazyload-min.js │ │ │ └── list.js │ │ ├── index.html │ │ ├── jquery-1.11.1.js │ │ ├── jquery-1.11.1.min.js │ │ ├── jquery-1.11.1.min.map │ │ └── jquery_plugins │ │ │ ├── ajax-chosen.js │ │ │ ├── config │ │ │ ├── index.html │ │ │ ├── jquery-ui-timepicker-addon.config.js │ │ │ ├── jquery.chosen.config.js │ │ │ ├── jquery.ckeditor.config.js │ │ │ ├── jquery.datepicker.config.js │ │ │ ├── jquery.datetime.config.js │ │ │ ├── jquery.fancybox.config.js │ │ │ ├── jquery.fileupload.config.js │ │ │ ├── jquery.markitup.config.js │ │ │ ├── jquery.multiselect.js │ │ │ ├── jquery.noty.config.js │ │ │ ├── jquery.numeric.config.js │ │ │ ├── jquery.tine_mce.config.js │ │ │ └── jquery.uniform.config.js │ │ │ ├── index.html │ │ │ ├── jquery-ui-timepicker-addon.js │ │ │ ├── jquery-ui-timepicker-addon.min.js │ │ │ ├── jquery.chosen.js │ │ │ ├── jquery.chosen.min.js │ │ │ ├── jquery.easing-1.3.pack.js │ │ │ ├── jquery.fancybox-1.3.4.js │ │ │ ├── jquery.fancybox.js │ │ │ ├── jquery.fancybox.pack.js │ │ │ ├── jquery.fileupload.js │ │ │ ├── jquery.form.js │ │ │ ├── jquery.form.min.js │ │ │ ├── jquery.iframe-transport.js │ │ │ ├── jquery.noty.js │ │ │ ├── jquery.numeric.min.js │ │ │ ├── jquery.ui.datetime.js │ │ │ ├── load-image.min.js │ │ │ ├── tmpl.min.js │ │ │ ├── ui.multiselect.min.js │ │ │ └── ui │ │ │ ├── i18n │ │ │ ├── datepicker │ │ │ │ ├── index.html │ │ │ │ ├── jquery.ui.datepicker-af.js │ │ │ │ ├── jquery.ui.datepicker-ar.js │ │ │ │ ├── jquery.ui.datepicker-bg.js │ │ │ │ ├── jquery.ui.datepicker-bn.js │ │ │ │ ├── jquery.ui.datepicker-cs.js │ │ │ │ ├── jquery.ui.datepicker-da.js │ │ │ │ ├── jquery.ui.datepicker-de.js │ │ │ │ ├── jquery.ui.datepicker-el.js │ │ │ │ ├── jquery.ui.datepicker-es.js │ │ │ │ ├── jquery.ui.datepicker-fa.js │ │ │ │ ├── jquery.ui.datepicker-fr.js │ │ │ │ ├── jquery.ui.datepicker-hu.js │ │ │ │ ├── jquery.ui.datepicker-id.js │ │ │ │ ├── jquery.ui.datepicker-it.js │ │ │ │ ├── jquery.ui.datepicker-ja.js │ │ │ │ ├── jquery.ui.datepicker-ko.js │ │ │ │ ├── jquery.ui.datepicker-nl.js │ │ │ │ ├── jquery.ui.datepicker-no.js │ │ │ │ ├── jquery.ui.datepicker-pl.js │ │ │ │ ├── jquery.ui.datepicker-pt-br.js │ │ │ │ ├── jquery.ui.datepicker-pt.js │ │ │ │ ├── jquery.ui.datepicker-ro.js │ │ │ │ ├── jquery.ui.datepicker-ru.js │ │ │ │ ├── jquery.ui.datepicker-sk.js │ │ │ │ ├── jquery.ui.datepicker-th.js │ │ │ │ ├── jquery.ui.datepicker-tr.js │ │ │ │ ├── jquery.ui.datepicker-uk.js │ │ │ │ ├── jquery.ui.datepicker-vi.js │ │ │ │ └── jquery.ui.datepicker-zh-cn.js │ │ │ ├── index.html │ │ │ ├── multiselect │ │ │ │ ├── index.html │ │ │ │ ├── ui-multiselect-ar.js │ │ │ │ ├── ui-multiselect-de.js │ │ │ │ ├── ui-multiselect-el.js │ │ │ │ ├── ui-multiselect-en.js │ │ │ │ ├── ui-multiselect-es.js │ │ │ │ ├── ui-multiselect-fr.js │ │ │ │ ├── ui-multiselect-it.js │ │ │ │ ├── ui-multiselect-ja.js │ │ │ │ ├── ui-multiselect-pt-br.js │ │ │ │ ├── ui-multiselect-ru.js │ │ │ │ └── ui-multiselect-uk.js │ │ │ └── timepicker │ │ │ │ ├── index.html │ │ │ │ ├── jquery-ui-timepicker-af.js │ │ │ │ ├── jquery-ui-timepicker-ar.js │ │ │ │ ├── jquery-ui-timepicker-bg.js │ │ │ │ ├── jquery-ui-timepicker-cs.js │ │ │ │ ├── jquery-ui-timepicker-de.js │ │ │ │ ├── jquery-ui-timepicker-el.js │ │ │ │ ├── jquery-ui-timepicker-es.js │ │ │ │ ├── jquery-ui-timepicker-fr.js │ │ │ │ ├── jquery-ui-timepicker-hu.js │ │ │ │ ├── jquery-ui-timepicker-id.js │ │ │ │ ├── jquery-ui-timepicker-it.js │ │ │ │ ├── jquery-ui-timepicker-ja.js │ │ │ │ ├── jquery-ui-timepicker-ko.js │ │ │ │ ├── jquery-ui-timepicker-nl.js │ │ │ │ ├── jquery-ui-timepicker-no.js │ │ │ │ ├── jquery-ui-timepicker-pl.js │ │ │ │ ├── jquery-ui-timepicker-pt-br.js │ │ │ │ ├── jquery-ui-timepicker-pt.js │ │ │ │ ├── jquery-ui-timepicker-ro.js │ │ │ │ ├── jquery-ui-timepicker-ru.js │ │ │ │ ├── jquery-ui-timepicker-sk.js │ │ │ │ ├── jquery-ui-timepicker-tr.js │ │ │ │ ├── jquery-ui-timepicker-uk.js │ │ │ │ ├── jquery-ui-timepicker-vi.js │ │ │ │ └── jquery-ui-timepicker-zh-cn.js │ │ │ ├── index.html │ │ │ └── jquery-ui-1.10.3.custom.min.js │ ├── languages │ │ ├── add-new-lang-string.sh │ │ ├── afrikaans.php │ │ ├── arabic.php │ │ ├── bengali.php │ │ ├── bulgarian.php │ │ ├── catalan.php │ │ ├── chinese.php │ │ ├── croatian.php │ │ ├── czech.php │ │ ├── danish.php │ │ ├── dutch.php │ │ ├── english.php │ │ ├── french.php │ │ ├── german.php │ │ ├── greek.php │ │ ├── hindi.php │ │ ├── hungarian.php │ │ ├── index.html │ │ ├── indonesian.php │ │ ├── italian.php │ │ ├── japanese.php │ │ ├── korean.php │ │ ├── lithuanian.php │ │ ├── mongolian.php │ │ ├── norwegian.php │ │ ├── persian.php │ │ ├── polish.php │ │ ├── pt-br.portuguese.php │ │ ├── pt-pt.portuguese.php │ │ ├── romanian.php │ │ ├── russian.php │ │ ├── slovak.php │ │ ├── spanish.php │ │ ├── thai.php │ │ ├── turkish.php │ │ ├── ukrainian.php │ │ └── vietnamese.php │ ├── license-gpl3.txt │ ├── license-grocery-crud.txt │ ├── license-mit.txt │ ├── texteditor │ │ └── ckeditor │ │ │ ├── LICENSE.html │ │ │ ├── adapters │ │ │ └── jquery.js │ │ │ ├── ckeditor.js │ │ │ ├── ckeditor.php │ │ │ ├── ckeditor_php4.php │ │ │ ├── ckeditor_php5.php │ │ │ ├── config.js │ │ │ ├── contents.css │ │ │ ├── images │ │ │ └── spacer.gif │ │ │ ├── lang │ │ │ ├── _languages.js │ │ │ ├── _translationstatus.txt │ │ │ ├── af.js │ │ │ ├── ar.js │ │ │ ├── bg.js │ │ │ ├── bn.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── cy.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── en.js │ │ │ ├── eo.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fo.js │ │ │ ├── fr-ca.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── gu.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── ku.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── mn.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── nl.js │ │ │ ├── no.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sr-latn.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── ug.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-cn.js │ │ │ └── zh.js │ │ │ ├── plugins │ │ │ ├── a11yhelp │ │ │ │ ├── dialogs │ │ │ │ │ └── a11yhelp.js │ │ │ │ └── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── vi.js │ │ │ │ │ └── zh-cn.js │ │ │ ├── about │ │ │ │ └── dialogs │ │ │ │ │ ├── about.js │ │ │ │ │ └── logo_ckeditor.png │ │ │ ├── adobeair │ │ │ │ └── plugin.js │ │ │ ├── ajax │ │ │ │ └── plugin.js │ │ │ ├── autogrow │ │ │ │ └── plugin.js │ │ │ ├── bbcode │ │ │ │ └── plugin.js │ │ │ ├── clipboard │ │ │ │ └── dialogs │ │ │ │ │ └── paste.js │ │ │ ├── colordialog │ │ │ │ └── dialogs │ │ │ │ │ └── colordialog.js │ │ │ ├── devtools │ │ │ │ ├── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ └── zh-cn.js │ │ │ │ └── plugin.js │ │ │ ├── dialog │ │ │ │ └── dialogDefinition.js │ │ │ ├── div │ │ │ │ └── dialogs │ │ │ │ │ └── div.js │ │ │ ├── docprops │ │ │ │ ├── dialogs │ │ │ │ │ └── docprops.js │ │ │ │ └── plugin.js │ │ │ ├── find │ │ │ │ └── dialogs │ │ │ │ │ └── find.js │ │ │ ├── flash │ │ │ │ ├── dialogs │ │ │ │ │ └── flash.js │ │ │ │ └── images │ │ │ │ │ └── placeholder.png │ │ │ ├── forms │ │ │ │ ├── dialogs │ │ │ │ │ ├── button.js │ │ │ │ │ ├── checkbox.js │ │ │ │ │ ├── form.js │ │ │ │ │ ├── hiddenfield.js │ │ │ │ │ ├── radio.js │ │ │ │ │ ├── select.js │ │ │ │ │ ├── textarea.js │ │ │ │ │ └── textfield.js │ │ │ │ └── images │ │ │ │ │ └── hiddenfield.gif │ │ │ ├── iframe │ │ │ │ ├── dialogs │ │ │ │ │ └── iframe.js │ │ │ │ └── images │ │ │ │ │ └── placeholder.png │ │ │ ├── iframedialog │ │ │ │ └── plugin.js │ │ │ ├── image │ │ │ │ └── dialogs │ │ │ │ │ └── image.js │ │ │ ├── link │ │ │ │ ├── dialogs │ │ │ │ │ ├── anchor.js │ │ │ │ │ └── link.js │ │ │ │ └── images │ │ │ │ │ └── anchor.gif │ │ │ ├── liststyle │ │ │ │ └── dialogs │ │ │ │ │ └── liststyle.js │ │ │ ├── pagebreak │ │ │ │ └── images │ │ │ │ │ └── pagebreak.gif │ │ │ ├── pastefromword │ │ │ │ └── filter │ │ │ │ │ └── default.js │ │ │ ├── pastetext │ │ │ │ └── dialogs │ │ │ │ │ └── pastetext.js │ │ │ ├── placeholder │ │ │ │ ├── dialogs │ │ │ │ │ └── placeholder.js │ │ │ │ ├── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ └── zh-cn.js │ │ │ │ ├── placeholder.gif │ │ │ │ └── plugin.js │ │ │ ├── preview │ │ │ │ └── preview.html │ │ │ ├── scayt │ │ │ │ └── dialogs │ │ │ │ │ ├── options.js │ │ │ │ │ └── toolbar.css │ │ │ ├── showblocks │ │ │ │ └── images │ │ │ │ │ ├── block_address.png │ │ │ │ │ ├── block_blockquote.png │ │ │ │ │ ├── block_div.png │ │ │ │ │ ├── block_h1.png │ │ │ │ │ ├── block_h2.png │ │ │ │ │ ├── block_h3.png │ │ │ │ │ ├── block_h4.png │ │ │ │ │ ├── block_h5.png │ │ │ │ │ ├── block_h6.png │ │ │ │ │ ├── block_p.png │ │ │ │ │ └── block_pre.png │ │ │ ├── smiley │ │ │ │ ├── dialogs │ │ │ │ │ └── smiley.js │ │ │ │ └── images │ │ │ │ │ ├── angel_smile.gif │ │ │ │ │ ├── angry_smile.gif │ │ │ │ │ ├── broken_heart.gif │ │ │ │ │ ├── confused_smile.gif │ │ │ │ │ ├── cry_smile.gif │ │ │ │ │ ├── devil_smile.gif │ │ │ │ │ ├── embaressed_smile.gif │ │ │ │ │ ├── envelope.gif │ │ │ │ │ ├── heart.gif │ │ │ │ │ ├── kiss.gif │ │ │ │ │ ├── lightbulb.gif │ │ │ │ │ ├── omg_smile.gif │ │ │ │ │ ├── regular_smile.gif │ │ │ │ │ ├── sad_smile.gif │ │ │ │ │ ├── shades_smile.gif │ │ │ │ │ ├── teeth_smile.gif │ │ │ │ │ ├── thumbs_down.gif │ │ │ │ │ ├── thumbs_up.gif │ │ │ │ │ ├── tounge_smile.gif │ │ │ │ │ ├── whatchutalkingabout_smile.gif │ │ │ │ │ └── wink_smile.gif │ │ │ ├── specialchar │ │ │ │ ├── dialogs │ │ │ │ │ └── specialchar.js │ │ │ │ └── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ug.js │ │ │ │ │ └── zh-cn.js │ │ │ ├── styles │ │ │ │ └── styles │ │ │ │ │ └── default.js │ │ │ ├── stylesheetparser │ │ │ │ └── plugin.js │ │ │ ├── table │ │ │ │ └── dialogs │ │ │ │ │ └── table.js │ │ │ ├── tableresize │ │ │ │ └── plugin.js │ │ │ ├── tabletools │ │ │ │ └── dialogs │ │ │ │ │ └── tableCell.js │ │ │ ├── templates │ │ │ │ ├── dialogs │ │ │ │ │ └── templates.js │ │ │ │ └── templates │ │ │ │ │ ├── default.js │ │ │ │ │ └── images │ │ │ │ │ ├── template1.gif │ │ │ │ │ ├── template2.gif │ │ │ │ │ └── template3.gif │ │ │ ├── uicolor │ │ │ │ ├── dialogs │ │ │ │ │ └── uicolor.js │ │ │ │ ├── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ └── zh-cn.js │ │ │ │ ├── plugin.js │ │ │ │ ├── uicolor.gif │ │ │ │ └── yui │ │ │ │ │ ├── assets │ │ │ │ │ ├── hue_bg.png │ │ │ │ │ ├── hue_thumb.png │ │ │ │ │ ├── picker_mask.png │ │ │ │ │ ├── picker_thumb.png │ │ │ │ │ └── yui.css │ │ │ │ │ └── yui.js │ │ │ ├── wsc │ │ │ │ └── dialogs │ │ │ │ │ ├── ciframe.html │ │ │ │ │ ├── tmpFrameset.html │ │ │ │ │ ├── wsc.css │ │ │ │ │ └── wsc.js │ │ │ └── xml │ │ │ │ └── plugin.js │ │ │ ├── skins │ │ │ └── kama │ │ │ │ ├── dialog.css │ │ │ │ ├── editor.css │ │ │ │ ├── icons.png │ │ │ │ ├── icons_rtl.png │ │ │ │ ├── images │ │ │ │ ├── dialog_sides.gif │ │ │ │ ├── dialog_sides.png │ │ │ │ ├── dialog_sides_rtl.png │ │ │ │ ├── mini.gif │ │ │ │ ├── noimage.png │ │ │ │ ├── sprites.png │ │ │ │ ├── sprites_ie6.png │ │ │ │ └── toolbar_start.gif │ │ │ │ ├── skin.js │ │ │ │ └── templates.css │ │ │ └── themes │ │ │ └── default │ │ │ └── theme.js │ └── themes │ │ ├── datatables │ │ ├── config.php │ │ ├── css │ │ │ ├── datatables.css │ │ │ ├── demo_table_jui.css │ │ │ ├── images │ │ │ │ ├── error.png │ │ │ │ ├── index.html │ │ │ │ ├── small-loading.gif │ │ │ │ └── success.png │ │ │ ├── index.html │ │ │ └── jquery.dataTables.css │ │ ├── extras │ │ │ └── TableTools │ │ │ │ └── media │ │ │ │ ├── as3 │ │ │ │ ├── ZeroClipboard.as │ │ │ │ ├── ZeroClipboardPdf.as │ │ │ │ └── lib │ │ │ │ │ └── AlivePDF.swc │ │ │ │ ├── css │ │ │ │ ├── TableTools.css │ │ │ │ └── TableTools_JUI.css │ │ │ │ ├── images │ │ │ │ ├── background.png │ │ │ │ ├── collection.png │ │ │ │ ├── collection_hover.png │ │ │ │ ├── copy.png │ │ │ │ ├── copy_hover.png │ │ │ │ ├── csv.png │ │ │ │ ├── csv_hover.png │ │ │ │ ├── pdf.png │ │ │ │ ├── pdf_hover.png │ │ │ │ ├── print.png │ │ │ │ ├── print_hover.png │ │ │ │ ├── psd │ │ │ │ │ ├── collection.psd │ │ │ │ │ ├── copy document.psd │ │ │ │ │ ├── file_types.psd │ │ │ │ │ └── printer.psd │ │ │ │ ├── xls.png │ │ │ │ └── xls_hover.png │ │ │ │ ├── js │ │ │ │ ├── TableTools.js │ │ │ │ ├── TableTools.min.js │ │ │ │ ├── TableTools.min.js.gz │ │ │ │ └── ZeroClipboard.js │ │ │ │ └── swf │ │ │ │ ├── copy_csv_xls.swf │ │ │ │ └── copy_csv_xls_pdf.swf │ │ ├── index.html │ │ ├── js │ │ │ ├── datatables-add.js │ │ │ ├── datatables-edit.js │ │ │ ├── datatables-extras.js │ │ │ ├── datatables.js │ │ │ ├── index.html │ │ │ ├── jquery.dataTables.js │ │ │ └── jquery.dataTables.min.js │ │ └── views │ │ │ ├── add.php │ │ │ ├── edit.php │ │ │ ├── list.php │ │ │ ├── list_template.php │ │ │ └── read.php │ │ ├── flexigrid │ │ ├── config.php │ │ ├── css │ │ │ ├── flexigrid.css │ │ │ ├── images │ │ │ │ ├── add.png │ │ │ │ ├── bg.gif │ │ │ │ ├── btn-sprite.gif │ │ │ │ ├── close.png │ │ │ │ ├── ddn.png │ │ │ │ ├── dn.png │ │ │ │ ├── edit.png │ │ │ │ ├── error.png │ │ │ │ ├── export.png │ │ │ │ ├── fhbg.gif │ │ │ │ ├── first.gif │ │ │ │ ├── hl.png │ │ │ │ ├── index.html │ │ │ │ ├── last.gif │ │ │ │ ├── line.gif │ │ │ │ ├── load.gif │ │ │ │ ├── load.png │ │ │ │ ├── magnifier.png │ │ │ │ ├── next.gif │ │ │ │ ├── prev.gif │ │ │ │ ├── print.png │ │ │ │ ├── success.png │ │ │ │ ├── up.png │ │ │ │ ├── uup.png │ │ │ │ └── wbg.gif │ │ │ └── index.html │ │ ├── index.html │ │ ├── js │ │ │ ├── cookies.js │ │ │ ├── flexigrid-add.js │ │ │ ├── flexigrid-edit.js │ │ │ ├── flexigrid.js │ │ │ ├── index.html │ │ │ ├── jquery.form.js │ │ │ ├── jquery.printElement.js │ │ │ └── jquery.printElement.min.js │ │ └── views │ │ │ ├── add.php │ │ │ ├── edit.php │ │ │ ├── list.php │ │ │ ├── list_template.php │ │ │ └── read.php │ │ └── index.html ├── image │ └── retina.png ├── images │ ├── accordian.gif │ ├── accordionLarge.png │ ├── add.gif │ ├── add.png │ ├── application.png │ ├── application_disabled.png │ ├── arrow_down.png │ ├── arrow_up.png │ ├── blank.gif │ ├── bogus.png │ ├── cancel.png │ ├── chart48x48.png │ ├── checked.gif │ ├── cog.gif │ ├── computer.png │ ├── delete.gif │ ├── delete.png │ ├── delete_disabled.png │ ├── desktop.gif │ ├── desktop3.jpg │ ├── download.jpeg │ ├── edit.png │ ├── edit_disabled.png │ ├── export.png │ ├── favicon.ico │ ├── folder_go.gif │ ├── gears.gif │ ├── gears.png │ ├── grid.png │ ├── grid32x32.gif │ ├── grid48x48.gif │ ├── grid48x48.png │ ├── gridLarge.png │ ├── group-icon.png │ ├── hatch.gif │ ├── hd-bg.gif │ ├── hd-tb-bg.gif │ ├── icon_padlock.png │ ├── icons-bg.png │ ├── im32x32.gif │ ├── im48x48.gif │ ├── im48x48.png │ ├── images.png │ ├── import.png │ ├── key.png │ ├── launcher-bg.gif │ ├── launcher-btn.gif │ ├── leaf.png │ ├── loader.gif │ ├── loading.gif │ ├── login_button.png │ ├── login_title.png │ ├── logo.png │ ├── logo │ │ ├── bone.jpg │ │ ├── jogja.png │ │ ├── makassar.jpg │ │ ├── maros.png │ │ ├── mes.jpg │ │ └── solo.jpg │ ├── logout.gif │ ├── logout.png │ ├── matauang.png │ ├── member.gif │ ├── member.png │ ├── notepadLarge.png │ ├── page_refresh.png │ ├── page_white_get.png │ ├── page_white_put.png │ ├── pajak.png │ ├── pembelian.png │ ├── penjual.png │ ├── penjualan.png │ ├── plugin.gif │ ├── po.png │ ├── powered-by-ext-js.png │ ├── print.png │ ├── px │ ├── refresh.png │ ├── rss.gif │ ├── s.gif │ ├── sales.png │ ├── save.png │ ├── shortcut │ │ ├── accordionLarge.png │ │ ├── book_add.png │ │ ├── co.png │ │ ├── im48x48.png │ │ ├── notepadLarge.png │ │ └── pelanggan.png │ ├── sigma.gif │ ├── so.png │ ├── table_add.png │ ├── tabs.gif │ ├── taskbar │ │ ├── black │ │ │ ├── item-over.gif │ │ │ ├── scroll-left.gif │ │ │ ├── scroll-right.gif │ │ │ ├── start-menu-left-corners.png │ │ │ ├── start-menu-left-right.png │ │ │ ├── start-menu-right-corners.png │ │ │ ├── start-menu-right.png │ │ │ ├── start-menu-top-bottom.png │ │ │ ├── startbutton-icon.gif │ │ │ ├── startbutton.gif │ │ │ ├── taskbar-split-h.gif │ │ │ ├── taskbar-start-panel-bg.gif │ │ │ ├── taskbutton.gif │ │ │ └── taskbuttons-panel-bg.gif │ │ ├── sencha.gif │ │ └── sencha.ico │ ├── taskbar_start_menu.png │ ├── taskbar_start_menu3.png │ ├── termin.png │ ├── unchecked.gif │ ├── upload.png │ ├── user-active.png │ ├── user-inactive.png │ ├── user_icon.png │ ├── winbar-bg.gif │ ├── winbar-btn.gif │ └── windows-bg.gif ├── index.html ├── js │ ├── chosen.js │ ├── jquery-ui.min.js │ ├── jquery.validate.min.js │ ├── moment.min.js │ ├── nng │ │ ├── chat.js │ │ ├── functions.js │ │ └── menu.js │ └── raphael-min.js ├── kid │ ├── assets │ │ └── sendmail.php │ ├── css │ │ ├── YTPlayer.css │ │ ├── animate.css │ │ ├── animated-text.css │ │ ├── bootstrap.min.css │ │ ├── chosen.css │ │ ├── color.css │ │ ├── font-awesome.css │ │ ├── fontello.css │ │ ├── gt_menu.css │ │ ├── gt_style.css │ │ ├── images │ │ │ ├── bx_loader.gif │ │ │ └── controls.png │ │ ├── login-register.css │ │ ├── owl.carousel.css │ │ ├── prettyPhoto.css │ │ ├── responsive.css │ │ ├── revslider │ │ │ ├── assets │ │ │ │ ├── arrow_left.png │ │ │ │ ├── arrow_left2.png │ │ │ │ ├── arrow_right.png │ │ │ │ ├── arrow_right2.png │ │ │ │ ├── arrowleft.png │ │ │ │ ├── arrowright.png │ │ │ │ ├── boxed_bgtile.png │ │ │ │ ├── bullet.png │ │ │ │ ├── bullet_boxed.png │ │ │ │ ├── bullets.png │ │ │ │ ├── bullets2.png │ │ │ │ ├── coloredbg.png │ │ │ │ ├── gridtile.png │ │ │ │ ├── gridtile_3x3.png │ │ │ │ ├── gridtile_3x3_white.png │ │ │ │ ├── gridtile_white.png │ │ │ │ ├── large_left.png │ │ │ │ ├── large_right.png │ │ │ │ ├── loader.gif │ │ │ │ ├── navigdots.png │ │ │ │ ├── navigdots_bgtile.png │ │ │ │ ├── shadow1.png │ │ │ │ ├── shadow2.png │ │ │ │ ├── shadow3.png │ │ │ │ ├── small_left.png │ │ │ │ ├── small_left_boxed.png │ │ │ │ ├── small_right.png │ │ │ │ ├── small_right_boxed.png │ │ │ │ └── timer.png │ │ │ └── settings.css │ │ ├── shortcodes.css │ │ ├── svg-style.css │ │ ├── swiper.css │ │ ├── typography.css │ │ ├── user-dashboard.css │ │ ├── widget.css │ │ ├── ytp-regular-2.html │ │ └── ytp-regular.html │ ├── extra-images │ │ ├── about_us_img.jpg │ │ ├── banner-01.jpg │ │ ├── banner-02.jpg │ │ ├── banner-03.jpg │ │ ├── banner-04.jpg │ │ ├── banner-05.jpg │ │ ├── banner-06.jpg │ │ ├── banner-07.jpg │ │ ├── banner-08.jpg │ │ ├── banner-09.jpg │ │ ├── best-teacher-01.jpg │ │ ├── best-teacher-02.jpg │ │ ├── best-teacher-03.jpg │ │ ├── best-teacher-04.jpg │ │ ├── best-teacher-05.jpg │ │ ├── best-teacher-06.jpg │ │ ├── best-teacher-07.jpg │ │ ├── best-teacher-08.jpg │ │ ├── blog-01.jpg │ │ ├── blog-02.jpg │ │ ├── blog-03.jpg │ │ ├── blog-04.jpg │ │ ├── comment-01.jpg │ │ ├── comment-02.jpg │ │ ├── comment-03.jpg │ │ ├── course-detail-01.jpg │ │ ├── course-listing-01.jpg │ │ ├── course-listing-02.jpg │ │ ├── course-listing-03.jpg │ │ ├── event-detail-01.jpg │ │ ├── foo-news-01.jpg │ │ ├── foo-news-02.jpg │ │ ├── foo-news-03.jpg │ │ ├── foo-news-04.jpg │ │ ├── foo-news-05.jpg │ │ ├── foo-news-06.jpg │ │ ├── foo-news-07.jpg │ │ ├── foo-news-08.jpg │ │ ├── foo-news-09.jpg │ │ ├── foo-news-10.jpg │ │ ├── foo-news-11.jpg │ │ ├── foo-news-12.jpg │ │ ├── foo-news-13.jpg │ │ ├── foo-news-14.jpg │ │ ├── gallery-01.jpg │ │ ├── gallery-02.jpg │ │ ├── gallery-03.jpg │ │ ├── gallery-04.jpg │ │ ├── gallery-05.jpg │ │ ├── gallery-06.jpg │ │ ├── gallery-07.jpg │ │ ├── gallery-08.jpg │ │ ├── gallery-09.jpg │ │ ├── gallery-10.jpg │ │ ├── gallery-11.jpg │ │ ├── gallery-12.jpg │ │ ├── img1.jpg │ │ ├── img2.jpg │ │ ├── kid-smile.jpg │ │ ├── kid-smile.png │ │ ├── latest-course-01.jpg │ │ ├── latest-course-02.jpg │ │ ├── latest-course-03.jpg │ │ ├── latest-course-04.jpg │ │ ├── latest-course-05.jpg │ │ ├── latest-course-06.jpg │ │ ├── latest-course-07.jpg │ │ ├── latest-course-author.png │ │ ├── news-01.jpg │ │ ├── news-02.jpg │ │ ├── news-03.jpg │ │ ├── news-04.jpg │ │ ├── news-05.jpg │ │ ├── news-06.jpg │ │ ├── news-listing-01.jpg │ │ ├── news-listing-02.jpg │ │ ├── news-listing-03.jpg │ │ ├── pop-course-01.jpg │ │ ├── pop-course-02.jpg │ │ ├── pop-course-03.jpg │ │ ├── pop-course-04.jpg │ │ ├── pop-course-05.jpg │ │ ├── pop-course-06.jpg │ │ ├── popular-course-icon.png │ │ ├── product-01.jpg │ │ ├── product-02.jpg │ │ ├── product-03.jpg │ │ ├── product-04.jpg │ │ ├── product-05.jpg │ │ ├── product-06.jpg │ │ ├── product-07.jpg │ │ ├── product-08.jpg │ │ ├── product-09.jpg │ │ ├── shop-detail-01.jpg │ │ ├── teacher-01.jpg │ │ ├── teacher-02.jpg │ │ ├── teacher-03.jpg │ │ ├── team-detail-01.jpg │ │ ├── team-detail-02.jpg │ │ ├── team-detail-03.jpg │ │ ├── team-detail-04.jpg │ │ ├── team-detail-05.jpg │ │ ├── team-detail-06.jpg │ │ └── testimmonial-01.jpg │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── fontawesome-webfont.woff2 │ │ ├── fontello │ │ │ ├── fontello85c8.eot │ │ │ ├── fontello85c8.svg │ │ │ ├── fontello85c8.ttf │ │ │ └── fontello85c8.woff │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ ├── glyphicons-halflings-regular.woff2 │ │ ├── icomoon.eot │ │ ├── icomoon.svg │ │ ├── icomoon.ttf │ │ └── icomoon.woff │ ├── images │ │ ├── 404-face.png │ │ ├── 404-kid.png │ │ ├── brand-01.jpg │ │ ├── brand-02.jpg │ │ ├── brand-03.jpg │ │ ├── brand-04.jpg │ │ ├── brand-05.jpg │ │ ├── brand-06.jpg │ │ ├── chosen-sprite.html │ │ ├── chosen-sprite@2x.html │ │ ├── comming-soon-bg.jpg │ │ ├── copyright.jpg │ │ ├── event-01.jpg │ │ ├── footer-bg.jpg │ │ ├── hdg-01.png │ │ ├── images │ │ │ ├── bx_loader.gif │ │ │ └── controls.png │ │ ├── logo-white.png │ │ ├── logo.png │ │ ├── popup-form-img.jpg │ │ ├── prettyPhoto │ │ │ ├── dark_rounded │ │ │ │ ├── Thumbs.db │ │ │ │ ├── btnNext.png │ │ │ │ ├── btnPrevious.png │ │ │ │ ├── contentPattern.png │ │ │ │ ├── default_thumbnail.gif │ │ │ │ ├── loader.gif │ │ │ │ └── sprite.png │ │ │ ├── dark_square │ │ │ │ ├── Thumbs.db │ │ │ │ ├── btnNext.png │ │ │ │ ├── btnPrevious.png │ │ │ │ ├── contentPattern.png │ │ │ │ ├── default_thumbnail.gif │ │ │ │ ├── loader.gif │ │ │ │ └── sprite.png │ │ │ ├── default │ │ │ │ ├── Thumbs.db │ │ │ │ ├── default_thumb.png │ │ │ │ ├── loader.gif │ │ │ │ ├── sprite.png │ │ │ │ ├── sprite_next.png │ │ │ │ ├── sprite_prev.png │ │ │ │ ├── sprite_x.png │ │ │ │ └── sprite_y.png │ │ │ ├── facebook │ │ │ │ ├── Thumbs.db │ │ │ │ ├── btnNext.png │ │ │ │ ├── btnPrevious.png │ │ │ │ ├── contentPatternBottom.png │ │ │ │ ├── contentPatternLeft.png │ │ │ │ ├── contentPatternRight.png │ │ │ │ ├── contentPatternTop.png │ │ │ │ ├── default_thumbnail.gif │ │ │ │ ├── loader.gif │ │ │ │ └── sprite.png │ │ │ ├── light_rounded │ │ │ │ ├── Thumbs.db │ │ │ │ ├── btnNext.png │ │ │ │ ├── btnPrevious.png │ │ │ │ ├── default_thumbnail.gif │ │ │ │ ├── loader.gif │ │ │ │ └── sprite.png │ │ │ └── light_square │ │ │ │ ├── Thumbs.db │ │ │ │ ├── btnNext.png │ │ │ │ ├── btnPrevious.png │ │ │ │ ├── default_thumbnail.gif │ │ │ │ ├── loader.gif │ │ │ │ └── sprite.png │ │ ├── social.png │ │ ├── sub-banner-bg.jpg │ │ ├── testimonial-bg.jpg │ │ ├── testimonial-overlay.png │ │ ├── top-wrap-bg.png │ │ └── video-bg.jpg │ ├── js │ │ ├── animated-text.js │ │ ├── bootstrap.min.js │ │ ├── chosen.select.js │ │ ├── custom.js │ │ ├── index3_settings.js │ │ ├── jquery-filterable.js │ │ ├── jquery.accordion.js │ │ ├── jquery.downCount.js │ │ ├── jquery.js │ │ ├── jquery.mb.YTPlayer.min.js │ │ ├── jquery.nicescroll.min.js │ │ ├── jquery.prettyPhoto.js │ │ ├── jquery.singlePageNav.js │ │ ├── owl.carousel.js │ │ ├── plugins │ │ │ ├── inview │ │ │ │ └── jquery.inview.min.js │ │ │ ├── menu │ │ │ │ ├── superfish.min.js │ │ │ │ └── tinynav.min.js │ │ │ └── revslider │ │ │ │ ├── jquery.themepunch.revolution.min.js │ │ │ │ └── jquery.themepunch.tools.min.js │ │ ├── pluginse209.js │ │ ├── swiper.jquery.min.js │ │ ├── waypoints-min.js │ │ └── wow.min.js │ └── style.css └── uploads │ ├── KIOSK.jpg │ ├── KIOSK_thumb.jpg │ ├── album │ ├── 06381-1202.png │ ├── 81070-1201.png │ └── 88514-1201.png │ ├── files │ ├── 14247-barang-bekas1.jpg │ ├── 378d5-tkit.jpg │ ├── 7f98f-smait.jpg │ ├── 7fea3-sdit.jpg │ ├── 95a52-fasilitas.jpg │ ├── 969b5-kodja-2.gif │ ├── aa2f2-ekstra-kurikuler.gif │ ├── be109-kalender.jpg │ ├── c5ee7-studi-tour-pga-2013-4.jpg │ ├── d6bc5-smpit.jpg │ ├── index.html │ ├── pdftest.pdf │ └── test-2.pdf │ ├── index.html │ ├── pin.png │ ├── pin_thumb.png │ ├── tv.png │ └── tv_thumb.png ├── change_log.txt ├── index.php ├── license-gpl3.txt ├── license-grocery-crud.txt ├── license-mit.txt ├── license.txt ├── readme.rst ├── system ├── .htaccess ├── core │ ├── Benchmark.php │ ├── CodeIgniter.php │ ├── Common.php │ ├── Config.php │ ├── Controller.php │ ├── Exceptions.php │ ├── Hooks.php │ ├── Input.php │ ├── Lang.php │ ├── Loader.php │ ├── Log.php │ ├── Model.php │ ├── Output.php │ ├── Router.php │ ├── Security.php │ ├── URI.php │ ├── Utf8.php │ ├── compat │ │ ├── hash.php │ │ ├── index.html │ │ ├── mbstring.php │ │ ├── password.php │ │ └── standard.php │ └── index.html ├── database │ ├── DB.php │ ├── DB_cache.php │ ├── DB_driver.php │ ├── DB_forge.php │ ├── DB_query_builder.php │ ├── DB_result.php │ ├── DB_utility.php │ ├── drivers │ │ ├── cubrid │ │ │ ├── cubrid_driver.php │ │ │ ├── cubrid_forge.php │ │ │ ├── cubrid_result.php │ │ │ ├── cubrid_utility.php │ │ │ └── index.html │ │ ├── ibase │ │ │ ├── ibase_driver.php │ │ │ ├── ibase_forge.php │ │ │ ├── ibase_result.php │ │ │ ├── ibase_utility.php │ │ │ └── index.html │ │ ├── index.html │ │ ├── mssql │ │ │ ├── index.html │ │ │ ├── mssql_driver.php │ │ │ ├── mssql_forge.php │ │ │ ├── mssql_result.php │ │ │ └── mssql_utility.php │ │ ├── mysql │ │ │ ├── index.html │ │ │ ├── mysql_driver.php │ │ │ ├── mysql_forge.php │ │ │ ├── mysql_result.php │ │ │ └── mysql_utility.php │ │ ├── mysqli │ │ │ ├── index.html │ │ │ ├── mysqli_driver.php │ │ │ ├── mysqli_forge.php │ │ │ ├── mysqli_result.php │ │ │ └── mysqli_utility.php │ │ ├── oci8 │ │ │ ├── index.html │ │ │ ├── oci8_driver.php │ │ │ ├── oci8_forge.php │ │ │ ├── oci8_result.php │ │ │ └── oci8_utility.php │ │ ├── odbc │ │ │ ├── index.html │ │ │ ├── odbc_driver.php │ │ │ ├── odbc_forge.php │ │ │ ├── odbc_result.php │ │ │ └── odbc_utility.php │ │ ├── pdo │ │ │ ├── index.html │ │ │ ├── pdo_driver.php │ │ │ ├── pdo_forge.php │ │ │ ├── pdo_result.php │ │ │ ├── pdo_utility.php │ │ │ └── subdrivers │ │ │ │ ├── index.html │ │ │ │ ├── pdo_4d_driver.php │ │ │ │ ├── pdo_4d_forge.php │ │ │ │ ├── pdo_cubrid_driver.php │ │ │ │ ├── pdo_cubrid_forge.php │ │ │ │ ├── pdo_dblib_driver.php │ │ │ │ ├── pdo_dblib_forge.php │ │ │ │ ├── pdo_firebird_driver.php │ │ │ │ ├── pdo_firebird_forge.php │ │ │ │ ├── pdo_ibm_driver.php │ │ │ │ ├── pdo_ibm_forge.php │ │ │ │ ├── pdo_informix_driver.php │ │ │ │ ├── pdo_informix_forge.php │ │ │ │ ├── pdo_mysql_driver.php │ │ │ │ ├── pdo_mysql_forge.php │ │ │ │ ├── pdo_oci_driver.php │ │ │ │ ├── pdo_oci_forge.php │ │ │ │ ├── pdo_odbc_driver.php │ │ │ │ ├── pdo_odbc_forge.php │ │ │ │ ├── pdo_pgsql_driver.php │ │ │ │ ├── pdo_pgsql_forge.php │ │ │ │ ├── pdo_sqlite_driver.php │ │ │ │ ├── pdo_sqlite_forge.php │ │ │ │ ├── pdo_sqlsrv_driver.php │ │ │ │ └── pdo_sqlsrv_forge.php │ │ ├── postgre │ │ │ ├── index.html │ │ │ ├── postgre_driver.php │ │ │ ├── postgre_forge.php │ │ │ ├── postgre_result.php │ │ │ └── postgre_utility.php │ │ ├── sqlite │ │ │ ├── index.html │ │ │ ├── sqlite_driver.php │ │ │ ├── sqlite_forge.php │ │ │ ├── sqlite_result.php │ │ │ └── sqlite_utility.php │ │ ├── sqlite3 │ │ │ ├── index.html │ │ │ ├── sqlite3_driver.php │ │ │ ├── sqlite3_forge.php │ │ │ ├── sqlite3_result.php │ │ │ └── sqlite3_utility.php │ │ └── sqlsrv │ │ │ ├── index.html │ │ │ ├── sqlsrv_driver.php │ │ │ ├── sqlsrv_forge.php │ │ │ ├── sqlsrv_result.php │ │ │ └── sqlsrv_utility.php │ └── index.html ├── fonts │ ├── index.html │ └── texb.ttf ├── helpers │ ├── array_helper.php │ ├── captcha_helper.php │ ├── cookie_helper.php │ ├── date_helper.php │ ├── directory_helper.php │ ├── download_helper.php │ ├── email_helper.php │ ├── file_helper.php │ ├── form_helper.php │ ├── html_helper.php │ ├── index.html │ ├── inflector_helper.php │ ├── language_helper.php │ ├── number_helper.php │ ├── path_helper.php │ ├── security_helper.php │ ├── smiley_helper.php │ ├── string_helper.php │ ├── text_helper.php │ ├── typography_helper.php │ ├── url_helper.php │ └── xml_helper.php ├── index.html ├── language │ ├── english │ │ ├── calendar_lang.php │ │ ├── date_lang.php │ │ ├── db_lang.php │ │ ├── email_lang.php │ │ ├── form_validation_lang.php │ │ ├── ftp_lang.php │ │ ├── imglib_lang.php │ │ ├── index.html │ │ ├── migration_lang.php │ │ ├── number_lang.php │ │ ├── pagination_lang.php │ │ ├── profiler_lang.php │ │ ├── unit_test_lang.php │ │ └── upload_lang.php │ └── index.html └── libraries │ ├── Cache │ ├── Cache.php │ ├── drivers │ │ ├── Cache_apc.php │ │ ├── Cache_dummy.php │ │ ├── Cache_file.php │ │ ├── Cache_memcached.php │ │ ├── Cache_redis.php │ │ ├── Cache_wincache.php │ │ └── index.html │ └── index.html │ ├── Calendar.php │ ├── Cart.php │ ├── Driver.php │ ├── Email.php │ ├── Encrypt.php │ ├── Encryption.php │ ├── Form_validation.php │ ├── Ftp.php │ ├── Image_lib.php │ ├── Javascript.php │ ├── Javascript │ ├── Jquery.php │ └── index.html │ ├── Migration.php │ ├── Pagination.php │ ├── Parser.php │ ├── Profiler.php │ ├── Session │ ├── Session.php │ ├── SessionHandlerInterface.php │ ├── Session_driver.php │ ├── drivers │ │ ├── Session_database_driver.php │ │ ├── Session_files_driver.php │ │ ├── Session_memcached_driver.php │ │ ├── Session_redis_driver.php │ │ └── index.html │ └── index.html │ ├── Table.php │ ├── Trackback.php │ ├── Typography.php │ ├── Unit_test.php │ ├── Upload.php │ ├── User_agent.php │ ├── Xmlrpc.php │ ├── Xmlrpcs.php │ ├── Zip.php │ └── index.html ├── update.txt └── user_guide ├── .buildinfo ├── DCO.html ├── _downloads └── ELDocs.tmbundle.zip ├── _images ├── appflowchart.gif └── smile.gif ├── _static ├── ajax-loader.gif ├── basic.css ├── ci-icon.ico ├── comment-bright.png ├── comment-close.png ├── comment.png ├── css │ ├── badge_only.css │ ├── citheme.css │ └── theme.css ├── doctools.js ├── down-pressed.png ├── down.png ├── file.png ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ └── fontawesome-webfont.woff ├── images │ └── ci-icon.ico ├── jquery.js ├── js │ ├── oldtheme.js │ └── theme.js ├── minus.png ├── plus.png ├── pygments.css ├── searchtools.js ├── underscore.js ├── up-pressed.png ├── up.png └── websupport.js ├── changelog.html ├── contributing └── index.html ├── database ├── caching.html ├── call_function.html ├── configuration.html ├── connecting.html ├── db_driver_reference.html ├── examples.html ├── forge.html ├── helpers.html ├── index.html ├── metadata.html ├── queries.html ├── query_builder.html ├── results.html ├── transactions.html └── utilities.html ├── documentation └── index.html ├── general ├── alternative_php.html ├── ancillary_classes.html ├── autoloader.html ├── caching.html ├── cli.html ├── common_functions.html ├── compatibility_functions.html ├── controllers.html ├── core_classes.html ├── creating_drivers.html ├── creating_libraries.html ├── credits.html ├── drivers.html ├── environments.html ├── errors.html ├── helpers.html ├── hooks.html ├── index.html ├── libraries.html ├── managing_apps.html ├── models.html ├── profiling.html ├── requirements.html ├── reserved_names.html ├── routing.html ├── security.html ├── styleguide.html ├── urls.html ├── views.html └── welcome.html ├── genindex.html ├── helpers ├── array_helper.html ├── captcha_helper.html ├── cookie_helper.html ├── date_helper.html ├── directory_helper.html ├── download_helper.html ├── email_helper.html ├── file_helper.html ├── form_helper.html ├── html_helper.html ├── index.html ├── inflector_helper.html ├── language_helper.html ├── number_helper.html ├── path_helper.html ├── security_helper.html ├── smiley_helper.html ├── string_helper.html ├── text_helper.html ├── typography_helper.html ├── url_helper.html └── xml_helper.html ├── index.html ├── installation ├── downloads.html ├── index.html ├── troubleshooting.html ├── upgrade_120.html ├── upgrade_130.html ├── upgrade_131.html ├── upgrade_132.html ├── upgrade_133.html ├── upgrade_140.html ├── upgrade_141.html ├── upgrade_150.html ├── upgrade_152.html ├── upgrade_153.html ├── upgrade_154.html ├── upgrade_160.html ├── upgrade_161.html ├── upgrade_162.html ├── upgrade_163.html ├── upgrade_170.html ├── upgrade_171.html ├── upgrade_172.html ├── upgrade_200.html ├── upgrade_201.html ├── upgrade_202.html ├── upgrade_203.html ├── upgrade_210.html ├── upgrade_211.html ├── upgrade_212.html ├── upgrade_213.html ├── upgrade_214.html ├── upgrade_220.html ├── upgrade_221.html ├── upgrade_222.html ├── upgrade_223.html ├── upgrade_300.html ├── upgrade_301.html ├── upgrade_302.html ├── upgrade_303.html ├── upgrade_304.html ├── upgrade_305.html ├── upgrade_306.html ├── upgrade_310.html ├── upgrade_b11.html └── upgrading.html ├── libraries ├── benchmark.html ├── caching.html ├── calendar.html ├── cart.html ├── config.html ├── email.html ├── encrypt.html ├── encryption.html ├── file_uploading.html ├── form_validation.html ├── ftp.html ├── image_lib.html ├── index.html ├── input.html ├── javascript.html ├── language.html ├── loader.html ├── migration.html ├── output.html ├── pagination.html ├── parser.html ├── security.html ├── sessions.html ├── table.html ├── trackback.html ├── typography.html ├── unit_testing.html ├── uri.html ├── user_agent.html ├── xmlrpc.html └── zip.html ├── license.html ├── objects.inv ├── overview ├── appflow.html ├── at_a_glance.html ├── features.html ├── getting_started.html ├── goals.html ├── index.html └── mvc.html ├── search.html ├── searchindex.js └── tutorial ├── conclusion.html ├── create_news_items.html ├── index.html ├── news_section.html └── static_pages.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/.htaccess -------------------------------------------------------------------------------- /DB/all_New_101.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/DB/all_New_101.sql -------------------------------------------------------------------------------- /DB/all_New_102 + cms.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/DB/all_New_102 + cms.sql -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/README.md -------------------------------------------------------------------------------- /application/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/.htaccess -------------------------------------------------------------------------------- /application/cache/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/cache/.htaccess -------------------------------------------------------------------------------- /application/cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/cache/index.html -------------------------------------------------------------------------------- /application/config/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/config/autoload.php -------------------------------------------------------------------------------- /application/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/config/config.php -------------------------------------------------------------------------------- /application/config/constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/config/constants.php -------------------------------------------------------------------------------- /application/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/config/database.php -------------------------------------------------------------------------------- /application/config/doctypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/config/doctypes.php -------------------------------------------------------------------------------- /application/config/foreign_chars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/config/foreign_chars.php -------------------------------------------------------------------------------- /application/config/grocery_crud.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/config/grocery_crud.php -------------------------------------------------------------------------------- /application/config/hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/config/hooks.php -------------------------------------------------------------------------------- /application/config/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/config/index.html -------------------------------------------------------------------------------- /application/config/memcached.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/config/memcached.php -------------------------------------------------------------------------------- /application/config/migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/config/migration.php -------------------------------------------------------------------------------- /application/config/mimes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/config/mimes.php -------------------------------------------------------------------------------- /application/config/profiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/config/profiler.php -------------------------------------------------------------------------------- /application/config/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/config/routes.php -------------------------------------------------------------------------------- /application/config/smileys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/config/smileys.php -------------------------------------------------------------------------------- /application/config/user_agents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/config/user_agents.php -------------------------------------------------------------------------------- /application/controllers/Auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/controllers/Auth.php -------------------------------------------------------------------------------- /application/controllers/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/controllers/Data.php -------------------------------------------------------------------------------- /application/controllers/Supplier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/controllers/Supplier.php -------------------------------------------------------------------------------- /application/controllers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/controllers/index.html -------------------------------------------------------------------------------- /application/core/MY_Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/core/MY_Loader.php -------------------------------------------------------------------------------- /application/core/MY_Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/core/MY_Router.php -------------------------------------------------------------------------------- /application/core/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/core/index.html -------------------------------------------------------------------------------- /application/helpers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/helpers/index.html -------------------------------------------------------------------------------- /application/hooks/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/hooks/index.html -------------------------------------------------------------------------------- /application/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/index.html -------------------------------------------------------------------------------- /application/language/english/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/language/english/index.html -------------------------------------------------------------------------------- /application/language/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/language/index.html -------------------------------------------------------------------------------- /application/libraries/BaseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/libraries/BaseController.php -------------------------------------------------------------------------------- /application/libraries/Grocery_CRUD.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/libraries/Grocery_CRUD.php -------------------------------------------------------------------------------- /application/libraries/image_moo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/libraries/image_moo.php -------------------------------------------------------------------------------- /application/libraries/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/libraries/index.html -------------------------------------------------------------------------------- /application/logs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/logs/index.html -------------------------------------------------------------------------------- /application/logs/log-2017-05-08.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/logs/log-2017-05-08.php -------------------------------------------------------------------------------- /application/logs/log-2017-05-09.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/logs/log-2017-05-09.php -------------------------------------------------------------------------------- /application/logs/log-2017-05-10.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/logs/log-2017-05-10.php -------------------------------------------------------------------------------- /application/logs/log-2017-05-12.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/logs/log-2017-05-12.php -------------------------------------------------------------------------------- /application/logs/log-2017-05-13.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/logs/log-2017-05-13.php -------------------------------------------------------------------------------- /application/logs/log-2017-05-21.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/logs/log-2017-05-21.php -------------------------------------------------------------------------------- /application/logs/log-2017-05-23.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/logs/log-2017-05-23.php -------------------------------------------------------------------------------- /application/logs/log-2017-05-29.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/logs/log-2017-05-29.php -------------------------------------------------------------------------------- /application/logs/log-2017-06-03.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/logs/log-2017-06-03.php -------------------------------------------------------------------------------- /application/logs/log-2017-06-04.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/logs/log-2017-06-04.php -------------------------------------------------------------------------------- /application/logs/log-2017-06-05.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/logs/log-2017-06-05.php -------------------------------------------------------------------------------- /application/logs/log-2017-06-14.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/logs/log-2017-06-14.php -------------------------------------------------------------------------------- /application/logs/log-2017-06-15.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/logs/log-2017-06-15.php -------------------------------------------------------------------------------- /application/logs/log-2017-06-18.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/logs/log-2017-06-18.php -------------------------------------------------------------------------------- /application/logs/log-2017-06-19.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/logs/log-2017-06-19.php -------------------------------------------------------------------------------- /application/logs/log-2017-06-20.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/logs/log-2017-06-20.php -------------------------------------------------------------------------------- /application/logs/log-2017-06-23.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/logs/log-2017-06-23.php -------------------------------------------------------------------------------- /application/logs/log-2017-06-24.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/logs/log-2017-06-24.php -------------------------------------------------------------------------------- /application/logs/log-2017-06-25.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/logs/log-2017-06-25.php -------------------------------------------------------------------------------- /application/logs/log-2017-06-26.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/logs/log-2017-06-26.php -------------------------------------------------------------------------------- /application/logs/log-2017-07-16.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/logs/log-2017-07-16.php -------------------------------------------------------------------------------- /application/logs/log-2017-07-20.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/logs/log-2017-07-20.php -------------------------------------------------------------------------------- /application/logs/log-2017-07-24.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/logs/log-2017-07-24.php -------------------------------------------------------------------------------- /application/logs/log-2017-08-04.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/logs/log-2017-08-04.php -------------------------------------------------------------------------------- /application/logs/log-2017-08-12.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/logs/log-2017-08-12.php -------------------------------------------------------------------------------- /application/logs/log-2017-08-30.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/logs/log-2017-08-30.php -------------------------------------------------------------------------------- /application/models/Grafik_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/models/Grafik_model.php -------------------------------------------------------------------------------- /application/models/Grocery_crud_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/models/Grocery_crud_model.php -------------------------------------------------------------------------------- /application/models/Home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/models/Home.php -------------------------------------------------------------------------------- /application/models/Mbarang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/models/Mbarang.php -------------------------------------------------------------------------------- /application/models/Msupplier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/models/Msupplier.php -------------------------------------------------------------------------------- /application/models/Register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/models/Register.php -------------------------------------------------------------------------------- /application/models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/models/User.php -------------------------------------------------------------------------------- /application/models/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/models/index.html -------------------------------------------------------------------------------- /application/modules/documentation/views/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/modules/home/views/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/modules/home/views/footer.php -------------------------------------------------------------------------------- /application/modules/home/views/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/modules/home/views/header.php -------------------------------------------------------------------------------- /application/modules/home/views/home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/modules/home/views/home.php -------------------------------------------------------------------------------- /application/modules/home/views/main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/modules/home/views/main.php -------------------------------------------------------------------------------- /application/modules/login/views/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/modules/login/views/login.php -------------------------------------------------------------------------------- /application/modules/menu/models/Menu_model.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/modules/user/views/user_v.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/modules/user/views/user_v.php -------------------------------------------------------------------------------- /application/third_party/MX/Base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/third_party/MX/Base.php -------------------------------------------------------------------------------- /application/third_party/MX/Ci.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/third_party/MX/Ci.php -------------------------------------------------------------------------------- /application/third_party/MX/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/third_party/MX/Config.php -------------------------------------------------------------------------------- /application/third_party/MX/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/third_party/MX/Controller.php -------------------------------------------------------------------------------- /application/third_party/MX/Lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/third_party/MX/Lang.php -------------------------------------------------------------------------------- /application/third_party/MX/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/third_party/MX/Loader.php -------------------------------------------------------------------------------- /application/third_party/MX/Modules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/third_party/MX/Modules.php -------------------------------------------------------------------------------- /application/third_party/MX/Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/third_party/MX/Router.php -------------------------------------------------------------------------------- /application/third_party/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/third_party/index.html -------------------------------------------------------------------------------- /application/views/errors/cli/error_404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/views/errors/cli/error_404.php -------------------------------------------------------------------------------- /application/views/errors/cli/error_db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/views/errors/cli/error_db.php -------------------------------------------------------------------------------- /application/views/errors/cli/error_php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/views/errors/cli/error_php.php -------------------------------------------------------------------------------- /application/views/errors/cli/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/views/errors/cli/index.html -------------------------------------------------------------------------------- /application/views/errors/html/error_404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/views/errors/html/error_404.php -------------------------------------------------------------------------------- /application/views/errors/html/error_db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/views/errors/html/error_db.php -------------------------------------------------------------------------------- /application/views/errors/html/error_php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/views/errors/html/error_php.php -------------------------------------------------------------------------------- /application/views/errors/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/views/errors/html/index.html -------------------------------------------------------------------------------- /application/views/errors/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/views/errors/index.html -------------------------------------------------------------------------------- /application/views/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/views/example.php -------------------------------------------------------------------------------- /application/views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/views/index.html -------------------------------------------------------------------------------- /application/views/welcome_message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/application/views/welcome_message.php -------------------------------------------------------------------------------- /assets/AdminLTE-2.3.11/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/AdminLTE-2.3.11/.gitignore -------------------------------------------------------------------------------- /assets/AdminLTE-2.3.11/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/AdminLTE-2.3.11/.jshintrc -------------------------------------------------------------------------------- /assets/AdminLTE-2.3.11/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/AdminLTE-2.3.11/Gruntfile.js -------------------------------------------------------------------------------- /assets/AdminLTE-2.3.11/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/AdminLTE-2.3.11/LICENSE -------------------------------------------------------------------------------- /assets/AdminLTE-2.3.11/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/AdminLTE-2.3.11/README.md -------------------------------------------------------------------------------- /assets/AdminLTE-2.3.11/bootstrap/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/AdminLTE-2.3.11/bootstrap/js/npm.js -------------------------------------------------------------------------------- /assets/AdminLTE-2.3.11/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/AdminLTE-2.3.11/bower.json -------------------------------------------------------------------------------- /assets/AdminLTE-2.3.11/build/less/.csslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/AdminLTE-2.3.11/build/less/.csslintrc -------------------------------------------------------------------------------- /assets/AdminLTE-2.3.11/build/less/boxes.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/AdminLTE-2.3.11/build/less/boxes.less -------------------------------------------------------------------------------- /assets/AdminLTE-2.3.11/build/less/core.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/AdminLTE-2.3.11/build/less/core.less -------------------------------------------------------------------------------- /assets/AdminLTE-2.3.11/build/less/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/AdminLTE-2.3.11/build/less/forms.less -------------------------------------------------------------------------------- /assets/AdminLTE-2.3.11/build/less/modal.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/AdminLTE-2.3.11/build/less/modal.less -------------------------------------------------------------------------------- /assets/AdminLTE-2.3.11/build/less/navs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/AdminLTE-2.3.11/build/less/navs.less -------------------------------------------------------------------------------- /assets/AdminLTE-2.3.11/build/less/print.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/AdminLTE-2.3.11/build/less/print.less -------------------------------------------------------------------------------- /assets/AdminLTE-2.3.11/build/less/table.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/AdminLTE-2.3.11/build/less/table.less -------------------------------------------------------------------------------- /assets/AdminLTE-2.3.11/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/AdminLTE-2.3.11/changelog.md -------------------------------------------------------------------------------- /assets/AdminLTE-2.3.11/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/AdminLTE-2.3.11/composer.json -------------------------------------------------------------------------------- /assets/AdminLTE-2.3.11/dist/css/AdminLTE.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/AdminLTE-2.3.11/dist/css/AdminLTE.css -------------------------------------------------------------------------------- /assets/AdminLTE-2.3.11/dist/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/AdminLTE-2.3.11/dist/img/avatar.png -------------------------------------------------------------------------------- /assets/AdminLTE-2.3.11/dist/img/avatar04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/AdminLTE-2.3.11/dist/img/avatar04.png -------------------------------------------------------------------------------- /assets/AdminLTE-2.3.11/dist/img/avatar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/AdminLTE-2.3.11/dist/img/avatar2.png -------------------------------------------------------------------------------- /assets/AdminLTE-2.3.11/dist/img/avatar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/AdminLTE-2.3.11/dist/img/avatar3.png -------------------------------------------------------------------------------- /assets/AdminLTE-2.3.11/dist/img/avatar5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/AdminLTE-2.3.11/dist/img/avatar5.png -------------------------------------------------------------------------------- /assets/AdminLTE-2.3.11/dist/img/boxed-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/AdminLTE-2.3.11/dist/img/boxed-bg.jpg -------------------------------------------------------------------------------- /assets/AdminLTE-2.3.11/dist/img/boxed-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/AdminLTE-2.3.11/dist/img/boxed-bg.png -------------------------------------------------------------------------------- /assets/AdminLTE-2.3.11/dist/img/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/AdminLTE-2.3.11/dist/img/icons.png -------------------------------------------------------------------------------- /assets/AdminLTE-2.3.11/dist/img/photo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/AdminLTE-2.3.11/dist/img/photo1.png -------------------------------------------------------------------------------- /assets/AdminLTE-2.3.11/dist/img/photo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/AdminLTE-2.3.11/dist/img/photo2.png -------------------------------------------------------------------------------- /assets/AdminLTE-2.3.11/dist/img/photo3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/AdminLTE-2.3.11/dist/img/photo3.jpg -------------------------------------------------------------------------------- /assets/AdminLTE-2.3.11/dist/img/photo4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/AdminLTE-2.3.11/dist/img/photo4.jpg -------------------------------------------------------------------------------- /assets/AdminLTE-2.3.11/dist/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/AdminLTE-2.3.11/dist/js/app.js -------------------------------------------------------------------------------- /assets/AdminLTE-2.3.11/dist/js/app.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/AdminLTE-2.3.11/dist/js/app.min.js -------------------------------------------------------------------------------- /assets/AdminLTE-2.3.11/dist/js/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/AdminLTE-2.3.11/dist/js/demo.js -------------------------------------------------------------------------------- /assets/AdminLTE-2.3.11/documentation/docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/AdminLTE-2.3.11/documentation/docs.js -------------------------------------------------------------------------------- /assets/AdminLTE-2.3.11/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/AdminLTE-2.3.11/index.html -------------------------------------------------------------------------------- /assets/AdminLTE-2.3.11/index2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/AdminLTE-2.3.11/index2.html -------------------------------------------------------------------------------- /assets/AdminLTE-2.3.11/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/AdminLTE-2.3.11/package.json -------------------------------------------------------------------------------- /assets/AdminLTE-2.3.11/pages/UI/buttons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/AdminLTE-2.3.11/pages/UI/buttons.html -------------------------------------------------------------------------------- /assets/AdminLTE-2.3.11/pages/UI/general.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/AdminLTE-2.3.11/pages/UI/general.html -------------------------------------------------------------------------------- /assets/AdminLTE-2.3.11/pages/UI/icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/AdminLTE-2.3.11/pages/UI/icons.html -------------------------------------------------------------------------------- /assets/AdminLTE-2.3.11/pages/UI/modals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/AdminLTE-2.3.11/pages/UI/modals.html -------------------------------------------------------------------------------- /assets/AdminLTE-2.3.11/pages/UI/sliders.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/AdminLTE-2.3.11/pages/UI/sliders.html -------------------------------------------------------------------------------- /assets/AdminLTE-2.3.11/pages/calendar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/AdminLTE-2.3.11/pages/calendar.html -------------------------------------------------------------------------------- /assets/AdminLTE-2.3.11/pages/widgets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/AdminLTE-2.3.11/pages/widgets.html -------------------------------------------------------------------------------- /assets/AdminLTE-2.3.11/plugins/datatables/extensions/Responsive/Readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/AdminLTE-2.3.11/plugins/pace/pace.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/AdminLTE-2.3.11/plugins/pace/pace.css -------------------------------------------------------------------------------- /assets/AdminLTE-2.3.11/plugins/pace/pace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/AdminLTE-2.3.11/plugins/pace/pace.js -------------------------------------------------------------------------------- /assets/AdminLTE-2.3.11/starter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/AdminLTE-2.3.11/starter.html -------------------------------------------------------------------------------- /assets/AdminLTE-2.3.11/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/AdminLTE-2.3.11/yarn.lock -------------------------------------------------------------------------------- /assets/Chart.js-master/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | 4 | node_modules/* 5 | custom/* 6 | 7 | docs/index.md 8 | 9 | .settings/ 10 | -------------------------------------------------------------------------------- /assets/Chart.js-master/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/Chart.js-master/.travis.yml -------------------------------------------------------------------------------- /assets/Chart.js-master/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/Chart.js-master/CONTRIBUTING.md -------------------------------------------------------------------------------- /assets/Chart.js-master/Chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/Chart.js-master/Chart.js -------------------------------------------------------------------------------- /assets/Chart.js-master/Chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/Chart.js-master/Chart.min.js -------------------------------------------------------------------------------- /assets/Chart.js-master/Chart_pie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/Chart.js-master/Chart_pie.js -------------------------------------------------------------------------------- /assets/Chart.js-master/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/Chart.js-master/LICENSE.md -------------------------------------------------------------------------------- /assets/Chart.js-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/Chart.js-master/README.md -------------------------------------------------------------------------------- /assets/Chart.js-master/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/Chart.js-master/bower.json -------------------------------------------------------------------------------- /assets/Chart.js-master/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/Chart.js-master/composer.json -------------------------------------------------------------------------------- /assets/Chart.js-master/docs/01-Line-Chart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/Chart.js-master/docs/01-Line-Chart.md -------------------------------------------------------------------------------- /assets/Chart.js-master/docs/02-Bar-Chart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/Chart.js-master/docs/02-Bar-Chart.md -------------------------------------------------------------------------------- /assets/Chart.js-master/docs/06-Advanced.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/Chart.js-master/docs/06-Advanced.md -------------------------------------------------------------------------------- /assets/Chart.js-master/docs/07-Notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/Chart.js-master/docs/07-Notes.md -------------------------------------------------------------------------------- /assets/Chart.js-master/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/Chart.js-master/gulpfile.js -------------------------------------------------------------------------------- /assets/Chart.js-master/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/Chart.js-master/package.json -------------------------------------------------------------------------------- /assets/Chart.js-master/samples/bar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/Chart.js-master/samples/bar.html -------------------------------------------------------------------------------- /assets/Chart.js-master/samples/doughnut.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/Chart.js-master/samples/doughnut.html -------------------------------------------------------------------------------- /assets/Chart.js-master/samples/line.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/Chart.js-master/samples/line.html -------------------------------------------------------------------------------- /assets/Chart.js-master/samples/pie.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/Chart.js-master/samples/pie.html -------------------------------------------------------------------------------- /assets/Chart.js-master/samples/radar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/Chart.js-master/samples/radar.html -------------------------------------------------------------------------------- /assets/Chart.js-master/samples/tooltip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/Chart.js-master/samples/tooltip.html -------------------------------------------------------------------------------- /assets/Chart.js-master/src/Chart.Bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/Chart.js-master/src/Chart.Bar.js -------------------------------------------------------------------------------- /assets/Chart.js-master/src/Chart.Core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/Chart.js-master/src/Chart.Core.js -------------------------------------------------------------------------------- /assets/Chart.js-master/src/Chart.Doughnut.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/Chart.js-master/src/Chart.Doughnut.js -------------------------------------------------------------------------------- /assets/Chart.js-master/src/Chart.Line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/Chart.js-master/src/Chart.Line.js -------------------------------------------------------------------------------- /assets/Chart.js-master/src/Chart.Radar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/Chart.js-master/src/Chart.Radar.js -------------------------------------------------------------------------------- /assets/DataTables-1.10.15/Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/DataTables-1.10.15/Contributing.md -------------------------------------------------------------------------------- /assets/DataTables-1.10.15/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/DataTables-1.10.15/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /assets/DataTables-1.10.15/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/DataTables-1.10.15/Readme.md -------------------------------------------------------------------------------- /assets/DataTables-1.10.15/extensions/RowGroup/js/dataTables.rowGroup.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/DataTables-1.10.15/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/DataTables-1.10.15/license.txt -------------------------------------------------------------------------------- /assets/DataTables-1.10.15/media/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/DataTables-1.10.15/media/js/jquery.js -------------------------------------------------------------------------------- /assets/Gallery/css/blueimp-gallery-video.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/Gallery/css/blueimp-gallery-video.css -------------------------------------------------------------------------------- /assets/Gallery/css/blueimp-gallery.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/Gallery/css/blueimp-gallery.css -------------------------------------------------------------------------------- /assets/Gallery/css/blueimp-gallery.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/Gallery/css/blueimp-gallery.min.css -------------------------------------------------------------------------------- /assets/Gallery/css/demo/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/Gallery/css/demo/demo.css -------------------------------------------------------------------------------- /assets/Gallery/img/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/Gallery/img/error.png -------------------------------------------------------------------------------- /assets/Gallery/img/error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/Gallery/img/error.svg -------------------------------------------------------------------------------- /assets/Gallery/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/Gallery/img/loading.gif -------------------------------------------------------------------------------- /assets/Gallery/img/play-pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/Gallery/img/play-pause.png -------------------------------------------------------------------------------- /assets/Gallery/img/play-pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/Gallery/img/play-pause.svg -------------------------------------------------------------------------------- /assets/Gallery/img/video-play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/Gallery/img/video-play.png -------------------------------------------------------------------------------- /assets/Gallery/img/video-play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/Gallery/img/video-play.svg -------------------------------------------------------------------------------- /assets/Gallery/js/blueimp-gallery-video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/Gallery/js/blueimp-gallery-video.js -------------------------------------------------------------------------------- /assets/Gallery/js/blueimp-gallery-vimeo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/Gallery/js/blueimp-gallery-vimeo.js -------------------------------------------------------------------------------- /assets/Gallery/js/blueimp-gallery-youtube.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/Gallery/js/blueimp-gallery-youtube.js -------------------------------------------------------------------------------- /assets/Gallery/js/blueimp-gallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/Gallery/js/blueimp-gallery.js -------------------------------------------------------------------------------- /assets/Gallery/js/blueimp-gallery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/Gallery/js/blueimp-gallery.min.js -------------------------------------------------------------------------------- /assets/Gallery/js/blueimp-gallery.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/Gallery/js/blueimp-gallery.min.js.map -------------------------------------------------------------------------------- /assets/Gallery/js/blueimp-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/Gallery/js/blueimp-helper.js -------------------------------------------------------------------------------- /assets/Gallery/js/demo/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/Gallery/js/demo/demo.js -------------------------------------------------------------------------------- /assets/Gallery/js/jquery.blueimp-gallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/Gallery/js/jquery.blueimp-gallery.js -------------------------------------------------------------------------------- /assets/Gallery/js/vendor/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/Gallery/js/vendor/jquery.js -------------------------------------------------------------------------------- /assets/autocomplete/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/autocomplete/jquery-ui.css -------------------------------------------------------------------------------- /assets/autocomplete/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/autocomplete/jquery-ui.js -------------------------------------------------------------------------------- /assets/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/css/font-awesome.min.css -------------------------------------------------------------------------------- /assets/css/ionicons.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/css/ionicons.min.css -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /assets/grocery_crud/config/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/grocery_crud/config/index.html -------------------------------------------------------------------------------- /assets/grocery_crud/css/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/grocery_crud/css/index.html -------------------------------------------------------------------------------- /assets/grocery_crud/css/ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/grocery_crud/css/ui/index.html -------------------------------------------------------------------------------- /assets/grocery_crud/css/ui/simple/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/grocery_crud/css/ui/simple/index.html -------------------------------------------------------------------------------- /assets/grocery_crud/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/grocery_crud/index.html -------------------------------------------------------------------------------- /assets/grocery_crud/js/common/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/grocery_crud/js/common/list.js -------------------------------------------------------------------------------- /assets/grocery_crud/js/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/grocery_crud/js/index.html -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery-1.11.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/grocery_crud/js/jquery-1.11.1.js -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery-1.11.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/grocery_crud/js/jquery-1.11.1.min.js -------------------------------------------------------------------------------- /assets/grocery_crud/languages/arabic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/grocery_crud/languages/arabic.php -------------------------------------------------------------------------------- /assets/grocery_crud/languages/bengali.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/grocery_crud/languages/bengali.php -------------------------------------------------------------------------------- /assets/grocery_crud/languages/catalan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/grocery_crud/languages/catalan.php -------------------------------------------------------------------------------- /assets/grocery_crud/languages/chinese.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/grocery_crud/languages/chinese.php -------------------------------------------------------------------------------- /assets/grocery_crud/languages/czech.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/grocery_crud/languages/czech.php -------------------------------------------------------------------------------- /assets/grocery_crud/languages/danish.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/grocery_crud/languages/danish.php -------------------------------------------------------------------------------- /assets/grocery_crud/languages/dutch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/grocery_crud/languages/dutch.php -------------------------------------------------------------------------------- /assets/grocery_crud/languages/english.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/grocery_crud/languages/english.php -------------------------------------------------------------------------------- /assets/grocery_crud/languages/french.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/grocery_crud/languages/french.php -------------------------------------------------------------------------------- /assets/grocery_crud/languages/german.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/grocery_crud/languages/german.php -------------------------------------------------------------------------------- /assets/grocery_crud/languages/greek.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/grocery_crud/languages/greek.php -------------------------------------------------------------------------------- /assets/grocery_crud/languages/hindi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/grocery_crud/languages/hindi.php -------------------------------------------------------------------------------- /assets/grocery_crud/languages/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/grocery_crud/languages/index.html -------------------------------------------------------------------------------- /assets/grocery_crud/languages/italian.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/grocery_crud/languages/italian.php -------------------------------------------------------------------------------- /assets/grocery_crud/languages/korean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/grocery_crud/languages/korean.php -------------------------------------------------------------------------------- /assets/grocery_crud/languages/persian.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/grocery_crud/languages/persian.php -------------------------------------------------------------------------------- /assets/grocery_crud/languages/polish.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/grocery_crud/languages/polish.php -------------------------------------------------------------------------------- /assets/grocery_crud/languages/russian.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/grocery_crud/languages/russian.php -------------------------------------------------------------------------------- /assets/grocery_crud/languages/slovak.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/grocery_crud/languages/slovak.php -------------------------------------------------------------------------------- /assets/grocery_crud/languages/spanish.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/grocery_crud/languages/spanish.php -------------------------------------------------------------------------------- /assets/grocery_crud/languages/thai.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/grocery_crud/languages/thai.php -------------------------------------------------------------------------------- /assets/grocery_crud/languages/turkish.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/grocery_crud/languages/turkish.php -------------------------------------------------------------------------------- /assets/grocery_crud/license-gpl3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/grocery_crud/license-gpl3.txt -------------------------------------------------------------------------------- /assets/grocery_crud/license-mit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v13nr2/ci-hmvc-ajax/HEAD/assets/grocery_crud/license-mit.txt -------------------------------------------------------------------------------- /assets/grocery_crud/themes/datatables/config.php: -------------------------------------------------------------------------------- 1 |