dhtmlxScheduler - 在 ASP.NET MVC3 中使用角色

发布于 2024-11-16 14:33:07 字数 156 浏览 3 评论 0原文

我有 dhtmlxScheduler 可以很好地处理重复事件和根据类型着色的事件。但是,我无法理解如何将调度程序的维护限制为特定 ASP.NET 角色中的用户。我正在尝试使用“保存”视图,但如果用户不属于所需的角色,则无法刷新调度程序以删除任何无效输入。

有人设法让这个工作成功吗?

I have dhtmlxScheduler working well with recurring events and events coloured according to type. However, I cannot understand how to limit the maintenance of the scheduler to those Users in a particular ASP.NET Role. I am trying to use the Save view but I cannot refresh the scheduler to remove any invalid input if the User is not in the required Role.

Has anybody managed to get this working successfully?

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

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

发布评论

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

评论(1

找个人就嫁了吧 2024-11-23 14:33:07

这比我想象的要简单。执行此操作的方法是在 function init() {...} 例程中,如下所示:-

<% if ( User.IsInRole("EditEvents") ) { %>
    scheduler.config.readonly = false;
<% } else { %>   
    scheduler.config.readonly = true;
<% }; %>

希望这对使用 dhtmlxSheduler 的任何人有所帮助。

This is simpler than I thought. The way to do it is in the function init() {...} routine, as follows:-

<% if ( User.IsInRole("EditEvents") ) { %>
    scheduler.config.readonly = false;
<% } else { %>   
    scheduler.config.readonly = true;
<% }; %>

Hope this helps anyone using dhtmlxSheduler.

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