An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. |
|

Hello.
In the web application I have been developing, there is a web page page that uses the RadScheduler component with web service binding.
The RadScheduler component displays appointments grouped by resources.
Since the resources are loaded by a stored procedure that requires input parameters, class SchedulerInfo has been extended:
public class SchedulerInfoExt : SchedulerInfo { public Int16 ClubId { get; set; } public String ResourceType { get; set; } public String MembershipNumber { get; set; } public String InsertResult { get; set; } public SchedulerInfoExt(ISchedulerInfo baseInfo, Int16 clubId, String resourceType, String membershipNumber) : base(baseInfo) { ClubId = clubId; ResourceType = resourceType; MembershipNumber = membershipNumber; InsertResult = ""; } public SchedulerInfoExt() { } } In the web page, a RadDock component is used to implement a form that allows users to create appointments.
In the Data Provider class, the Insert method validates the business rules and creates the appointment. The scheduler info property InsertResult is set by the Insert method, indicating if the insertion was successful, if there was an error or if there was a violation of the business rules.
On the client side, function AppointmentsPopulated, associated with event OnClientAppointmentsPopulated, is supposed to display a message based on the content of the scheduler info property InsertResult, informing the user if the appointment was created or if there was an error.
Is it possible to access the scheduler info property InsertResult from the client side function AppointmentsPopulated?
Thank you in advance.
Paulo
