如何从 JavaScript 中的节点 ID 获取 Umbraco 节点路径?
我在 javascript 中有一个 Umbraco 树节点 id。 如何获取该节点的路径(即“-1,1045,1046,1175”)?
理想情况下,我想做这样的事情:
var tree = jQuery("#<%=DialogTree.ClientID%>").UmbracoTreeAPI();
var nodePath = tree.getPath(theNodeId);
但我找不到 Umbraco Tree API 的任何参考。 有人知道该怎么做吗?
I have an Umbraco tree node id in javascript.
How can I get the path of this node (ie. "-1,1045,1046,1175")?
Ideally, I'd like to do something like this:
var tree = jQuery("#<%=DialogTree.ClientID%>").UmbracoTreeAPI();
var nodePath = tree.getPath(theNodeId);
But I can't find any reference for the Umbraco Tree API.
Does anybody know how to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看一下 Wiki 上的这篇文章:
http://our.umbraco.org/wiki/reference/backoffice-apis/tree-api-to-create-custom-treesapplications
我认为这可能会让您走上正轨。
Take a look at this article from the Wiki:
http://our.umbraco.org/wiki/reference/backoffice-apis/tree-api-to-create-custom-treesapplications
I think it may get you on the right track.
事实上,Umbraco 中没有为此提供库存方法。
我必须为此创建自己的网络服务。 :(
There is in fact no stock method for this in Umbraco.
I had to create my own webservice just for this. :(