Quantcast
Channel: Stuart Roberts on all things SharePoint
Viewing all articles
Browse latest Browse all 33

Add ECB to View Columns

$
0
0
Some code to add the ECB menu to the specified columns of a view: public void SetEcbColumnOnView(SPView view, List<string> internalNames) { if (view == null) throw new ArgumentNullException("view");   const string ListItemMenu = "ListItemMenu"; const string ViewFields = "ViewFields"; const string AttributeName = "Name";   XElement root = XElement.Parse(view.GetViewXml());   // Get all columns that […]

Viewing all articles
Browse latest Browse all 33

Trending Articles