Tuesday, May 8, 2018







Script to change Stop Edit caption for SharePoint List quick edit.

user does not care to do stop after updating the record through quick edit. One of the reason they ignore the stop caption, as it looks like just change the edit mode. So it require to change the stop caption to Save Changes and Stop. it can be achieved by below jQuery code. (Found the recursive function not working . need to check on it)

<script type="text/javascript">
$(document).ready(function Dos(event) {
var abc = $("a[class*='ms-heroCommandLink']");
abc.click(function() {
var pqr= $("a[class*='ms-heroCommandLink']");
pqr.text("Save Changes and Stop ");
Dos();
    });

 
});

</script>