43 lines
1.9 KiB
JavaScript
43 lines
1.9 KiB
JavaScript
|
require.config({
|
||
|
paths: {
|
||
|
'csmtable_xcore': '../addons/csmtable/library/xcore/js/xcore',
|
||
|
'csmtable_csminputstyle': '../addons/csmtable/library/xcore/js/csminputstyle',
|
||
|
'jquery.simple-color': '../addons/csmtable/library/xcore/js/jquery.simple-color',
|
||
|
|
||
|
'csmtable': '../addons/csmtable/js/csmtable',
|
||
|
'fixedcolumns': '../addons/csmtable/js/bootstrap-table-fixed-columns',
|
||
|
'tablereorderrows': '../addons/csmtable/js/bootstrap-table-reorder-rows',
|
||
|
'tablestickyheader': '../addons/csmtable/js/bootstrap-table-sticky-header',
|
||
|
'tabletreegrid': '../addons/csmtable/js/bootstrap-table-treegrid',
|
||
|
'jquerytablednd': '../addons/csmtable/js/jquery.tablednd.min',
|
||
|
'jquerytreegrid': '../addons/csmtable/js/jquery.treegrid.min',
|
||
|
'xeditable2': '../addons/csmtable/js/select2',
|
||
|
},
|
||
|
shim: {
|
||
|
'csmtable_xcore': {
|
||
|
deps: ["css!../addons/csmtable/library/xcore/css/xcore.css"]
|
||
|
},
|
||
|
'csmtable_csminputstyle': {
|
||
|
deps: ["css!../addons/csmtable/library/xcore/css/csminputstyle.css"]
|
||
|
},
|
||
|
|
||
|
'csmtable': {
|
||
|
deps: ["css!../addons/csmtable/css/csmtable.css", 'bootstrap-table']
|
||
|
},
|
||
|
'fixedcolumns': {
|
||
|
deps: ["css!../addons/csmtable/css/bootstrap-table-fixed-columns.css", 'bootstrap-table']
|
||
|
},
|
||
|
'tablereorderrows':{
|
||
|
deps: ["css!../addons/csmtable/css/bootstrap-table-reorder-rows.css",'jquerytablednd', 'bootstrap-table']
|
||
|
},
|
||
|
'tablestickyheader':{
|
||
|
deps: ["css!../addons/csmtable/css/bootstrap-table-sticky-header.css", 'bootstrap-table']
|
||
|
},
|
||
|
'tabletreegrid':{
|
||
|
deps: ["css!../addons/csmtable/css/jquery.treegrid.min.css",'jquerytreegrid', 'bootstrap-table']
|
||
|
},
|
||
|
'xeditable2':{
|
||
|
deps: ["css!../addons/csmtable/css/select2.css","css!../addons/csmtable/css/select2-bootstrap.css",'bootstrap-table','editable']
|
||
|
},
|
||
|
}
|
||
|
});
|