Hi,
I'm looking for a way to get the resource id that i've grouped my scheduler by in javascript. Is this possible?
Using OnClientAppointmentInserting i can get the start time and is all day properties. Is there any way to get the room id that i have grouped by?
I'm looking for a way to get the resource id that i've grouped my scheduler by in javascript. Is this possible?
Using OnClientAppointmentInserting i can get the start time and is all day properties. Is there any way to get the room id that i have grouped by?
function
AppointmentInserting(sender, eventArgs) {
var
start = formatDate(eventArgs.get_startTime());
var
isAllDay = eventArgs.get_isAllDay();
alert(start);
alert(isAllDay);
eventArgs.set_cancel(
true
);
}