0

我希望每当用户访问其中包含项目中心 webpart 的某个页面时,她应该已经设置了她的视图(强制),例如“摘要”、“挣值”等。

我知道视图绑定到用户的最后一个会话,所以如果在她最后一次访问期间用户将视图更改为“挣值”,下一个将是“挣值”。

如何强制每次用户使用项目中心 webpart 打开页面时,她总是会打开“摘要”视图?

谢谢。

4

2 回答 2

0

这是我编写的一个 JavaScript 解决方案,它使用查询字符串参数“viewuid”(视图的 GUID)来设置视图

var projCenterExt;
var JsGridSatellite;

_spBodyOnLoadFunctionNames.push("projCenterChangeView")

function projCenterChangeView() 
{
   if (window.location.search.toLowerCase().indexOf("viewuid") >= 0)
   {
      var JsGridViewUid = window.location.search.toLowerCase().split("viewuid=")[1].split("&")[0];

      if (typeof projectCenterComponent !== 'undefined')
      {
         if (typeof JsGridSatellite === 'undefined') JsGridSatellite = projectCenterComponent.get_GridSatellite();

         JsGridSatellite.LoadNewView({uid: JsGridViewUid});
      }
   }
}
于 2016-11-03T20:38:23.867 回答
0

谢谢爸爸丹尼尔。您让我们开始了,但这仅适用于 Chrome。我们必须在其中添加一个暂停,然后它在 IE 中工作为了清楚起见,您需要找到要显示的视图的 GUID 并在超链接中使用它。

这是我的示例 http://projectserver/PWA/SitePages/ITDDash.aspx?idViewUID=38f25d41-2391-4ed4-b84e-2befec36b80b

var projCenterExt;
var JsGridSatellite;

_spBodyOnLoadFunctionNames.push("projCenterChangeView")
//console.debug("before projCenterChangeView");
function projCenterChangeView() 
{
//alert("in projCenterChangeView");
//console.debug("before 3 secs");
setTimeout(function(){ 
   //alert("in if:"+window.location.search.toLowerCase().indexOf("viewuid") );
   
if (document.location.search.toLowerCase().indexOf("viewuid") >= 0)
  
 {
      

    var JsGridViewUid = document.location.search.toLowerCase().split("viewuid=")[1].split("&")[0];
//alert("in if:"+JsGridViewUid );
      if (typeof projectCenterComponent !== 'undefined')
      {
         if (typeof JsGridSatellite === 'undefined'){
 	      //console.debug("JsGridSatellite  kis undefined");
        	 JsGridSatellite = projectCenterComponent.get_GridSatellite();
              //alert("jjc test");
         }
         JsGridSatellite.LoadNewView({uid: JsGridViewUid}); //orig
      }
//JsGridSatellite.LoadNewView({uid: JsGridViewUid});
     
   }

 //console.debug("after 3 secs");
 }, 1000);  
//alert("at end");
}

于 2017-06-21T20:39:23.077 回答