我有一张表格
<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,但它也只能通过链接激活。
答案 0 :(得分:0)
mizzao:bootboxjs包可以直接从代码中为您提供此功能。
if ( selectedDoc ) bootbox.dialog({
.. your dialog definitions here
});