用户可以使用大[+]按钮添加子文档,但如果没有提示则无法将其删除。基本上只是删除[ - ]按钮。我怎么做?我能这样做吗?
如果无法完成,我可以解决我的问题,但这似乎打败了使用此软件包的目的。
答案 0 :(得分:0)
是的,您可以删除[ - ]按钮。
要添加新文档,您必须在事件中编写以下代码。
Template.TemplateName.events({
"click .autoform-add-item" :function(){
//This allow to remove the current [-] button as well.
setTimeout(function(){
$('.autoform-remove-item').remove();
});
},
});
对于添加编辑文档,您还必须在onRendered块中添加删除[ - ]按钮代码,例如:
Template.TemplateName.onRendered(function () {
$('.autoform-remove-item').remove();
});
@Note ::请确保您在[+]按钮上有“autoform-add-item”类,在[ - ]按钮上有“autoform-remove-item”。您可以使用inspect元素检查这些类。