本文整理汇总了TypeScript中jb-core/jb.jb.val方法的典型用法代码示例。如果您正苦于以下问题:TypeScript jb.val方法的具体用法?TypeScript jb.val怎么用?TypeScript jb.val使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类jb-core/jb.jb
的用法示例。
在下文中一共展示了jb.val方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: constructor
constructor(public ctx, public cmp, public $el) {
var data_ref = ctx.vars.$model.databind;
this.editableNumber = ctx.vars.editableNumber;
this.scaleElement = $el.find('.slider_scale')[0];
this.thumbElement = $el.find('.slider_thumb')[0];
this.inputElement = $el.find('.slider_input')[0];
this.textElement = $el.find('.slider_text')[0];
this.thumbElement.tabIndex = 1;
$(this.thumbElement).bind('mousedown', e => this.dragBegin(e) );
$(this.thumbElement).bind('keydown', e => this.keyDown(e) );
$(this.inputElement).bind('keydown', e => this.inputKeyDown(e));
$(this.inputElement).bind('blur', e => this.setInputValue());
$(this.inputElement).hide();
$(this.textElement).bind('mousedown', e => this.mouseDown(e) );
this.numericValue = this.editableNumber.numericPart(jb.val(data_ref));
this.$el.addClass('noselect');
this.valueChangeEm = new jb_rx.Subject();
this.valueChangeEm.distinctUntilChanged()
.debounceTime(100)
.filter(x =>
x != jb.val(data_ref))
.subscribe(x=>{
jb.writeValue(data_ref,x);
jb_ui.apply(this.ctx); // to fix with ChangeDetectionStrategy
})
}