无法使用带有knockout和requirejs的jqwidgets

时间:2015-02-27 09:02:44

标签: knockout.js requirejs jquery-widgets

我要再试一次,我一直试图找到一个解决方案,在单页应用中使用jqwidgets with knockout和requirejs。

我的index.html:

<script src="app/require.config.js"></script>
<script data-main="app/startup" src="bower_modules/requirejs/require.js"/>

我的require.config.js(主要由yeoman生成):

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 });

});

它使用也来自yeoman的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小部件时,它们不会被渲染。 study-selection.html:

<div id="jqxCheckBox" data-bind="jqxCheckBox: { checked: checked, disabled: disabled, width: '120px' }" style='margin-bottom: 10px;'>jqxCheckBox</div>

study-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 };

});

我一直在查看http://www.jqwidgets.com/jquery-widgets-documentation/documentation/requirejs/requirejs_tutorial_knockout.htm上的示例 但我无法找到解决问题的方法。有调试方法吗? 我错过了什么吗?

非常感谢任何帮助。

亲切的问候,

1 个答案:

答案 0 :(得分:0)

我终于明白了。 似乎我不得不放下:

$('#jqxcheckbox').jqxCheckBox({ width: 120, height: 25 }); 

为了在studyselection.js文件中呈现一个复选框。 虽然它没有在jqwidgets演示页面上显示的示例中显示这一点。