使 Asp.Net 树视图可拖动:如何仅为叶节点设置 css 类?

发布于 2024-10-03 18:56:21 字数 377 浏览 2 评论 0原文

我有一个 Asp.net 树视图,并且正在我的代码隐藏中以编程方式构建节点。

现在,该树视图的深度为 3 层,即 ROOT ->类别 ->属于此类别的任务。我现在想允许用户将这些叶子任务拖动到另一个表,但只有叶子应该是可拖动的(我为此使用 Jquery Draggable 插件,所以我只需要设置 css 类)。

知道如何仅为叶节点设置 CSS 类(代码隐藏或 js)吗?我尝试过类似的方法:

<asp:treeview id="treeviewTasks" runat="server"  leafnodestyle="draggable"  />

但这似乎不起作用:(

谢谢

山姆

I have an Asp.net treeview and am building the nodes programmatorically in my codebehind.

Now, this treeview is 3 levels deep, being ROOT -> CATEGORY -> Tasks belonging to this category. I would now like to allow the user to drag these leaf tasks to another table, but only the leafs should be draggable (I'm using the Jquery draggable plugin for this, so I just need to set the css class).

Any idea how I can set the CSS class for the leaf node only (codebehind or js)? I've tried something like:

<asp:treeview id="treeviewTasks" runat="server"  leafnodestyle="draggable"  />

but that doesn't seem to do the trick :(

thanks

Sam

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

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

发布评论

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

评论(1

坚持沉默 2024-10-10 18:56:21

结果我就快到了,但还没有完全到。正确的语法是:

<asp:treeview id="treeviewTasks" runat="server" leafnodestyle-cssclass="draggable hand"/>

RTM 我猜:)

Turned out I was almost there, but not quite. The correct syntax is:

<asp:treeview id="treeviewTasks" runat="server" leafnodestyle-cssclass="draggable hand"/>

RTM I guess :)

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