开发者

Adding custom fields to RadScheduler Appointments

开发者 https://www.devze.com 2023-03-25 07:53 出处:网络
I have a RadScheduler. It is now displayingall appointments in the database. I need to display only current loggedincustomer\'s appointment det开发者_JAVA技巧ails. I got a field in my database for the

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


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)

0

精彩评论

暂无评论...
验证码 换一张
取 消