Is there a way to use MVC bundles in custom grid editors? What I need is to have one js file and one css file build from SCSS files and bunch of JS files that can be included among my custom editors. I do not want to include each and every file by itself in javascript section of a manifest file.
{
gridEditors: [
{
// config
}
],
javascript: [
// my controller
// !!! single file containing other files bundled
],
css: [
// !!! single file containing other files bundled
]
}
Bundled files in custom editors
Is there a way to use MVC bundles in custom grid editors? What I need is to have one
js
file and onecss
file build from SCSS files and bunch of JS files that can be included among my custom editors. I do not want to include each and every file by itself injavascript
section of a manifest file.My related post on StackOverflow
is working on a reply...