本文整理汇总了TypeScript中bobril.emitChange函数的典型用法代码示例。如果您正苦于以下问题:TypeScript emitChange函数的具体用法?TypeScript emitChange怎么用?TypeScript emitChange使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了emitChange函数的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1:
ctx.action = () => {
ctx.group.forceFocus = true;
b.emitChange(ctx.group.data, ctx.data.value);
}
示例2: render
},
render(ctx: IRadioButtonGroupCtx, me: b.IBobrilNode) {
let d = ctx.data;
me.attrs = { role: "radiogroup" };
me.children = d.children;
b.style(me, d.style);
ctx.list = [];
let cfg = ctx.cfg || {};
cfg[radioButtonCfgName] = ctx;
ctx.cfg = cfg;
ctx.selIdx = (b.getValue(d.value) === d.unselectedValue) ? -1 : -2;
ctx.firstEnabled = -1;
},
postRender(ctx: IRadioButtonGroupCtx, me: b.IBobrilCacheNode) {
if (ctx.selIdx === -2) {
b.emitChange(ctx.data, ctx.data.unselectedValue);
}
},
postUpdateDom(ctx: IRadioButtonGroupCtx) {
let shouldBeFocused = ctx.selIdx;
if (shouldBeFocused === -1) {
shouldBeFocused = ctx.firstEnabled;
}
if (shouldBeFocused < 0) return;
let f = b.focused();
if (f) f = f.parent;
if (f) {
const c = f.ctx;
const list = ctx.list;
for (let i = 0; i < list.length; i++) {
if (list[i] === c) {