将自定义字段添加到 RadScheduler 约会

发布于 2024-11-27 23:55:39 字数 118 浏览 1 评论 0原文

我有一个 RadScheduler。它现在显示数据库中的所有约会。我需要仅显示当前登录客户的预约详细信息。我的数据库中有一个 customerId 字段。我如何将其添加到 RadScheduler 中的约会中。 非常感谢

I have a RadScheduler. It is now displaying all appointments in the database. I need to display only current loggedin customer's appointment details. I got a field in my database for the customerId. How i will add it to the Appointments in RadScheduler.
Many Thanks

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

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

发布评论

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

评论(1

宣告ˉ结束 2024-12-04 23:55:39

在我看来,RadScheduler 本身是架构性的,并不是过滤约会的正确位置。而是过滤您绑定的数据源以获取正确的约会。使用 Linq 很简单,可能类似于 datasource.all(appointment => Appointment.customerId == context.loginId)

Imo the RadScheduler itself is architectural not the right place to filter your appointments. Rather filter your bound DataSource for the correct appointments. Easy one with Linq, could be something like datasource.all(appointment => appointment.customerId == context.loginId)

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