在AngularJs模块中,Smart-Table是否可以强制st-search =“column”仅在模糊时触发?
答案 0 :(得分:2)
您可以创建如下自定义输入:
<input st-search="firstName" placeholder="search for firstname" class="input-sm form-control" type="search" ng-model-options="{ updateOn: 'blur' }" />
使用ng-model-options您可以设置很多配置,其中一个是updateOn
,您也可以在整个表单中使用!
答案 1 :(得分:0)
st-input-event属性将覆盖默认值以触发模糊
<input st-search="firstName" st-input-event="blur" type="search"/>