基于Meteor中的反应变量值打开模态窗口

时间:2015-10-16 15:21:49

标签: javascript jquery node.js twitter-bootstrap meteor

我有一张表格

<template name="form">
  {{#autoForm id="afUpdateDemo" type=formType collection="Items" doc=selectedDoc autosave=autoSaveMode}}
    {{> afQuickField name="title"}}
    {{#unless autoSaveMode}}
      <div class="form-group">
        <button type="submit" class="btn btn-primary" disabled="{{disableButtons}}">Submit</button>
        <button type="reset" class="btn btn-default" disabled="{{disableButtons}}">Reset Form</button>
      </div>
    {{/unless}}
  {{/autoForm}}
</template>

我想在模态窗口中打开此表单。因此,如果selectedDoc不为null,则模态应该是活动的。我怎样才能做到这一点?在bootstrap doc中,它们仅显示如何通过链接激活模态窗口。

我还找到了https://atmospherejs.com/yogiben/autoform-modals,但它也只能通过链接激活。

1 个答案:

答案 0 :(得分:0)

mizzao:bootboxjs包可以直接从代码中为您提供此功能。

if ( selectedDoc ) bootbox.dialog({
  .. your dialog definitions here
});