How to import Dojo module whose name has dot within it?
I am using dojo.require to import a grid module, the problem is the 开发者_开发问答module name has dot like turbo.grid.js, dojo.require("DIR.turbo.grid") will not work. How do i import it if i don't want to change the module name? Thanks.
I don't think this will work without renaming the module. the module names are like the package/classname structure in java - therefore a dot isn't a valid character. regards
精彩评论