SharePoint Short #19 When implementing your own Custom_AddDocLibMenuItems, which allows you to add custom menu items to the ECB of SharePoint items, remember to check for other implementations of this method before your own version. For example: function YourImplementationOf_AddDocLibMenuItems(m, ctx, url) { if (typeof Custom_AddDocLibMenuItems != 'undefined') { var CurrentCustom_AddDocLibMenuItems = Custom_AddDocLibMenuItems; } Custom_AddDocLibMenuItems […]
↧