我要再试一次,我一直在试图找到一个解决方案,在一个页面应用程序中使用jqwidget,其中包含了淘汰赛和需求。
我的index.html:
<script src="app/require.config.js"></script>
<script data-main="app/startup" src="bower_modules/requirejs/require.js"/>我的require.config.js (主要由约曼生成):
var require = {
baseUrl: ".",
paths: {
"bootstrap": "bower_modules/components-bootstrap/js/bootstrap.min",
"crossroads": "bower_modules/crossroads/dist/crossroads.min",
"hasher": "bower_modules/hasher/dist/js/hasher.min",
"jquery": "bower_modules/jquery/dist/jquery",
"knockout": "bower_modules/knockout/dist/knockout",
"jqxknockout": "bower_modules/jqwidgets/jqwidgets/jqxknockout",
"jqx-all": "bower_modules/jqwidgets/jqwidgets/jqx-all",
"knockout-projections": "bower_modules/knockout-projections/dist/knockout-projections",
"mapping": "bower_modules/bower-knockout-mapping/dist/knockout.mapping",
"signals": "bower_modules/js-signals/dist/signals.min",
"text": "bower_modules/requirejs-text/text"
},
shim: {
"bootstrap": {export: "$", deps: ["jquery", "mapping", 'jqx-all'] }
}
};我的startup.js (由index.html调用)
define(['jquery', 'knockout', './router', 'bootstrap', 'knockout-projections', 'jqx-all'], function ($, ko, router) {
ko.components.register('nav-bar', { require: 'components/nav-bar/nav-bar' });
ko.components.register('home-page', { require: 'components/home-page/home' });
ko.components.register('study-selection', { require: 'components/study-selection/study-selection' });
ko.applyBindings({ route: router.currentRoute });
});它使用了同样来自于约曼的router.js:
return new Router({
routes: [
{ url: '', params: { page: 'home-page' } },
{ url: 'study-selection', params: { page: 'study-selection' } }
]
});
function Router(config) {
var currentRoute = this.currentRoute = ko.observable({});
ko.utils.arrayForEach(config.routes, function(route) {
crossroads.addRoute(route.url, function(requestParams) {
currentRoute(ko.utils.extend(requestParams, route.params));
});
});
activateCrossroads();
}
function activateCrossroads() {
function parseHash(newHash, oldHash) { crossroads.parse(newHash); }
crossroads.normalizeFn = crossroads.NORM_AS_OBJECT;
hasher.initialized.add(parseHash);
hasher.changed.add(parseHash);
hasher.init();
}});
每当我打开索引页面时,我都可以看到jqx-all被加载。但是,当我尝试在任何页面中使用jquery小部件时,都不会呈现它们。搜索-selection.html:
<div id="jqxCheckBox" data-bind="jqxCheckBox: { checked: checked, disabled: disabled, width: '120px' }" style='margin-bottom: 10px;'>jqxCheckBox</div>研究-selection.js:
define(['knockout', 'text!./study-selection.html'], function (ko, templateMarkup) {
function Studyselection(params) {
this.message = ko.observable('Hello from the studySelection1 component!');
this.disabled = ko.observable(false);
}
return { viewModel: Studyselection, template: templateMarkup };
});我一直在查看knockout.htm上的示例,但是我无法找到解决问题的方法。有办法调试这个吗?我是不是遗漏了什么?
任何帮助都是非常感谢的。
致以亲切的问候,
发布于 2015-03-09 09:17:49
我终于想出来了。我似乎不得不说:
$('#jqxcheckbox').jqxCheckBox({ width: 120, height: 25 }); 以便在studyselection.js文件中呈现复选框。尽管它没有在jqwidget演示页面上显示的示例中显示这一点。
https://stackoverflow.com/questions/28761074
复制相似问题