您可以通过将下面的代码放在下面来隐藏“ 另存为草稿”按钮:
You may hide the Save as Draft button by putting the code written below in:
- Javascript (Userview Theme Settings)
- Form Builder (Custom HTML element)
Code Block | ||
---|---|---|
| ||
<script type="text/javascript"> $(document).ready( function(){ $("#saveAsDraft").remove(); }); </script> |