我的模板是
<div>
<div class="header" data-dojo-type="dojox.mobile.Heading" data-dojo-props='fixed:"top"'>
<span class="leftHeaderContent">
${leftButton}
<div class="headerText">${currentView}</div>
</span>
<span class="rightHeaderContent">
<div data-dojo-attach-event='onclick: clickProfile' class='profileButton'><div class=profileButtonInner></div></div>
</span>
</div>
</div>
我使用 _WidgetsInTemplateMixin 通过自定义小部件来解析这个。一切正常,除了标题的 'fixed:"top"' 属性不起作用。
我有一个可滚动的视图,标题随内容滚动。
我了解到,如果模板的根元素是小部件,则 _WidgetsInTemplateMixin 不起作用,因此我将元素放在它周围。它将其解析为标题小部件,属性除外。
有人能帮我吗?