将自定义字段添加到 RadScheduler 约会
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在我看来,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)