我正在尝试在 qooxdoo Mobile 中创建一个列表,该列表在每个项目的侧面都有一个复选框(例如在 Android 的设置菜单中)。我现在已经从列表中扩展并编写了我自己的提供者和渲染器。这些文件可以在下面找到。此外,可以在此处查看我当前进度的实时示例:示例页面
现在是什么状态?如您所见,复选框没有显示 - 但它们在那里(检查 DOM)。覆盖 CSS 以显示本机复选框实际上会显示它们,但框架框只是不显示。我的问题是:如何解决这个问题?我真的认为这是值得解决的,因为我相信这将是许多人可以从中受益的贡献。
编辑:我已经尝试将复选框包装在一个容器中,它也没有改变任何东西。
文件:
qx.ui.mobile.list.CheckBoxList:(在pastebin.org 上)
qx.Class.define('qx.ui.mobile.list.CheckBoxList', {
extend : qx.ui.mobile.list.List,
// overridden
construct : function (delegate) {
this.base( arguments );
this.__provider = new qx.ui.mobile.list.provider.CheckBoxListItemProvider( this );
if ( delegate ) {
this.setDelegate( delegate );
}
}
});
qx.ui.mobile.list.provider.CheckBoxListItemProvider(在 pastebin.org 上)
qx.Class.define('qx.ui.mobile.list.provider.CheckBoxListItemProvider', {
extend : qx.ui.mobile.list.provider.Provider,
members : {
// overridden
_createItemRenderer : function () {
return new qx.ui.mobile.list.renderer.CheckBoxListItemRenderer();
}
}
});
qx.ui.mobile.list.renderer.CheckBoxListItemRenderer(在 pastebin.org 上)
qx.Class.define('qx.ui.mobile.list.renderer.CheckBoxListItemRenderer', {
extend : qx.ui.mobile.list.renderer.Abstract,
// overridden
construct : function () {
this.base( arguments, new qx.ui.mobile.layout.HBox().set( { alignY: 'middle' } ) );
this._init();
},
members : {
__title : null,
__subtitle : null,
__checkbox : null,
__leftContainer : null,
getTitle : function () {
return this.__title.getValue()
},
setTitle : function (title) {
this.__title.setValue( title );
},
getSubTitle : function () {
return this.__subtitle.getValue();
},
setSubTitle : function (subtitle) {
this.__subtitle.setValue( subtitle );
},
getValue : function () {
return this.__checkbox.getValue();
},
setValue : function (checked) {
this.__checkbox.setValue( checked );
},
_init : function () {
this.__leftContainer = this._createLeftContainer();
this.add( this.__leftContainer, { flex: 1 } );
this.__title = this._createTitle();
this.__leftContainer.add( this.__title );
this.__subtitle = this._createSubTitle();
this.__leftContainer.add( this.__subtitle );
this.__checkbox = this._createCheckBox();
this.add( this.__checkbox );
},
_createLeftContainer : function () {
return new qx.ui.mobile.container.Composite( new qx.ui.mobile.layout.VBox() );
},
_createTitle : function () {
var title = new qx.ui.mobile.basic.Label();
title.addCssClass( 'list-itemlabel' );
return title;
},
_createSubTitle : function () {
var subtitle = new qx.ui.mobile.basic.Label();
subtitle.addCssClass( 'subtitle' );
return subtitle;
},
_createCheckBox : function () {
var checkbox = new qx.ui.mobile.form.CheckBoxListCheckBox();
return checkbox;
},
// overridden
_applyShowArrow : function (value, old) {
return;
},
// overriden
reset : function () {
this.__title.setValue( '' );
this.__subtitle.setValue( '' );
this.__checkbox.setValue( false );
}
},
// overriden
destruct : function () {
this._disposeObjects( '__title', '__subtitle', '__checkbox', '__leftContainer' );
}
});
qx.ui.mobile.form.CheckBoxListCheckBox(在 pastebin.org 上)
qx.Class.define('qx.ui.mobile.form.CheckBoxListCheckBox', {
extend : qx.ui.mobile.form.CheckBox,
members : {
// overridden
_onAppear : function () {
// we purposely don't call this.base( arguments ) because it would create a label that we don't need
qx.event.Registration.removeListener( this, 'appear', this.__onAppear, this );
}
}
});