سؤال

enter image description here

As shown in figure I want to add button (right side by send by mail) on each CommandBar in SharePoint site?

هل كانت مفيدة؟

المحلول

You can insert some code into React script editor web part to append the custom button.

<script src="https://code.jquery.com/jquery-1.12.4.min.js" type="text/javascript"></script>
<script type="text/javascript">
        $(document).ready(function () {
        var commandset= $("button[name='Send by email'][role='menuitem']").parent().parent();
        commandset.append( "<p>Test</p>" );
});

enter image description here

نصائح أخرى

You should use a SharePoint Framework Extension to do this.

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى sharepoint.stackexchange
scroll top