Sunday, March 31, 2013

Create custom verbs for SharePoint 2010 web parts

Reference:



If you want to show added verbs when page in display mode use below code
WebPartManager wpmgr = WebPartManager.GetCurrentWebPartManager(Page);
if (wpmgr.DisplayMode == WebPartManager.BrowseDisplayMode)
 {
// write code here to add verb menu.
 }

No comments:

Post a Comment

Image noise comparison methods

 1. using reference image technique     - peak_signal_noise_ratio (PSNR)     - SSI 2. non-reference image technique     - BRISQUE python pac...