毕业论文开发语言企业开发JAVA技术.NET技术WEB开发Linux/Unix数据库技术Windows平台移动平台嵌入式论文范文英语论文
您现在的位置: 毕业论文 >> 企业开发 >> 正文

Sharepoint2010中如何实现tab list显示多个list中的内容

更新时间:2013-1-15:  来源:毕业论文

Sharepoint2010中如何实现tab list显示多个list中的内容,就像浏览器那样的模式,带标签的。
如果说是javascript实现的话请赋上详细内容,说说谁都会,我也知道用javascript能实现,问题是怎么实现啊,亲。我在网上查了,有个叫easy tab的东西也能实现,但是不清楚,各位有能帮帮我的不。

我下了一个tab list的webpart但是只能显示一个List的内(选择一字段当分页标题),我想实现一个分页显示一个list的内容。

我们是这么做的。
1,通过CAML 视图方式 使用这个对象  SPSiteDataQuery

  protected void MutiList()
        {
            string getUrlstr = SPContext.Current.Site.Url + "/expense";
            using (SPSite site = new SPSite(getUrlstr))
            {
                using (SPWeb web = site.OpenWeb())
                {
                    SPSiteDataQuery query = new SPSiteDataQuery();
                    string GetBarCode = txtBar.Text.Trim();
                    query.Query = string.Format("<Where><Contains><FieldRef Name='BarCode' /><Value Type='Text'>{0}</Value></Contains></Where>", GetBarCode);
                    query.Lists = "<Lists BaseType='0' />";  //泛型列表

                    query.Lists = "<Lists ServerTemplate='100'/>";
                    //query.Webs = "<Webs Scope='Recursive' />";  //包含当前网站(Web)以及其下的所有子网站(Web) ,缺省仅仅包含当前web
                    query.ViewFields = "<FieldRef Name='Title' /><ProjectProperty Name='Title' /><ListProperty Name='Title' /><FieldRef Name='BarCode' />";
                    DataTable dt = web.GetSiteData(query);
                    GridView1.DataSource = dt;
                    GridView1.DataBind();
                }
            }
        } 

From past couple of weeks I’m thoroughly working on designing custom SharePoint sites which should look untraditional SharePoint site in all the way. Most of the time users ask to put lots of libraries web part on the home page which looks cluttered and dirty with scroll bars. So I thought why don’t I try with tab table and jQuery was my first preference. Here is how I achieved using SharePoint designer 2010

[1] [2] 下一页

设为首页 | 联系站长 | 友情链接 | 网站地图 |

copyright©youerw.com 优尔论文网 严禁转载
如果本毕业论文网损害了您的利益或者侵犯了您的权利,请及时联系,我们一定会及时改正。