在共享点列表视图中使用超链接

发布于 2024-09-28 04:54:01 字数 562 浏览 4 评论 0原文

我知道我可以使用共享点设计器将列表转换为数据视图 wp,然后我可以轻松地做到这一点。但我想知道是否有一种方法可以使用列表视图 wp 来执行此操作,而无需 sp 设计器的干预。

我有一个订单表,

orderid  orderdate  
1        1/1/2011
2        2/2/2012
3        3/3/2013

我喜欢建立指向 orderid 值的超链接,它将转到其对应页面。例如,您位于

http://server/Lists/Orders/Allitems.aspx< 的列表视图页面/a>

然后我喜欢看到 orderid 是超链接的。因此,当用户单击订单 ID 2 时,用户将转到

http://server/ordersite/2/order。 ASPX

I know I can use sharepoint designer to convert list to data view wp and then i can do this easily. but I wanted to if there was a way to do this with list view wp without intervention of sp designer.

I have a order table

orderid  orderdate  
1        1/1/2011
2        2/2/2012
3        3/3/2013

I like to establish hyperlink to the orderid values where it will go it's correspondence page. for example, you are on the list view page for

http://server/Lists/Orders/Allitems.aspx

then I like to see the orderids are hyperlinked. so when user clicks on order id 2 it will take user to

http://server/ordersite/2/order.aspx

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

柏拉图鍀咏恒 2024-10-05 04:54:01

您可以使用 Christophes 方法在计算列中生成 HTML,然后使用 javascript 将“转义”html 转换为“真实”html。

例如

="<a href='http://server/ordersite/" & ID & "/order.aspx">Show Order</a>"

http ://blog.pathtosharepoint.com/2008/09/01/how-to-open-hyperlinks-in-a-new-window-or-not/

You can use Christophes method to generate HTML in a calculated column and then javascript to turn the 'escaped' html into 'real' html.

e.g.

="<a href='http://server/ordersite/" & ID & "/order.aspx">Show Order</a>"

http://blog.pathtosharepoint.com/2008/09/01/how-to-open-hyperlinks-in-a-new-window-or-not/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文