示例#1
0
        protected virtual void AddXsltParameters(System.Xml.Xsl.XsltArgumentList argumentList)
        {
            var currentList = ContentList.GetContentListByParentWalk(this);
            var listPath = currentList == null ? string.Empty : currentList.Path;

            argumentList.AddParam("listPath", "", listPath);
        }
示例#2
0
        protected override void AddXsltParameters(System.Xml.Xsl.XsltArgumentList argumentList)
        {
            base.AddXsltParameters(argumentList);

            argumentList.AddParam("groupBy", "", this.GroupBy ?? string.Empty);
        }