G
Godfrey Sorita
Guest
Hi Tyagi, You can hide buttons generated by Rollbase using the code below. Paste the code to a script component where you want to hide the buttons. script type="text/javascript" $(function() { hideButton(' Edit '); // Example for hiding the Edit button }); function hideButton(buttonName) { //Use this function to hide buttons $("input[value='"+ buttonName +"']").hide(); } function removeButton(buttonName) { //Use this function to remove the button element $(input["value='+ buttonName +"']").remove(); } /script Hope this helps. Regards, Godfrey
Continue reading...
Continue reading...