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)
精彩评论