Summary : How to Create Custom Button in CRM Portals EntityForm or WebForm
Code:
$(document).ready(function () {
var editbtn = $('<input/>').attr({ type: 'button', name: 'Edit', value: 'Edit', id: 'edittBtn', class: 'submit-btn btn btn-primary' });
// InsertButton is for the Create Form, if you want for update form use the UpdateButton
$("#InsertButton").after(editbtn);
$("#edittBtn").click(function () {
// Implement the button click logic.
});
});
Code:
$(document).ready(function () {
var editbtn = $('<input/>').attr({ type: 'button', name: 'Edit', value: 'Edit', id: 'edittBtn', class: 'submit-btn btn btn-primary' });
// InsertButton is for the Create Form, if you want for update form use the UpdateButton
$("#InsertButton").after(editbtn);
$("#edittBtn").click(function () {
// Implement the button click logic.
});
});