I am trying to add two button Save and close in the bottom of the page as well (just like the one in the top of the general plumsail form)
I tried to create the same by dragging and droping two button changing the properties and adding java script as below.
fd.spSaved(function() {
setTimeout(function() {
fd._showAlert('The form has been submitted successfully. Thank you, IT');
}, 5);
})
I set the width of the button as one but still the width between the buttons are not as same as the default created one on the top. and the css class I have added in the properties is "tn btn-outline-primary" and "btn btn-primary" to get the default theams from the site but the out put shows this instead if this
i have similar situation but i have four button and button is hidden on condition so if second button is hidden there a space for that button still available is there a way to hide the space too? I have set visibility:hidden in style and showing button on status which works great except for the hidden button still occupies the space.