I have a button from ribbon workbench that allows users to add existing teams. I want the default team lookup view to be "Weekly Report Teams", but it defaults to "All Teams." How can I change it so that the initial view shown to the user is weekly report teams?
I am currently trying to do this via javascript, but it doesn't seem to be working...
function openLookup() {
var orgUrl = GetGlobalContext().getClientUrl();
var viewid = "%7b4F5E2C2E-7929-E811-B322-000C293DDC16%7d";
var url = orgUrl + "/_controls/lookup/lookupinfo.aspx?LookupStyle=multi&browse=0&objecttypes=9&viewid=" + viewid;
open(url);
}
*This post is locked for comments
I have the same question (0)