在下一个列表框中,我使用模板加载元素:
<listbox model="@load(vm.resAccepted)" selectedItem="@bind(vm.selResAccepted)">
<template name="model">
<listitem>
<listcell label="@load(each.eventName)" />
<listcell label="@load(each.userName)" />
<listcell>
<button image="/img/button_mail.png"/>
</listcell>
</listitem>
</template>
</listbox>
我的目标是只为用户选择的行启用列表项的按钮。
为此,我尝试
<button disabled="@load(vm.selResAccepted.id=each.id?'false':'true')" />
检查唯一字段id是否与所选元素相同,但失败。
任何帮助将不胜感激。