Thanks for contacting Syncfusion Support.
We have prepared the sample in-order to meet your requirement with “populating the resource value on the create popup window on cell click”. The sample can be downloaded from the following location:
http://www.syncfusion.com/downloads/support/forum/120565/ze/Resource_grouping1787235130
Please find the following code example that we have used in the above sample to meet your requirement.
<code>
function onAppointmentWindowOpen(args) {
args.cancel = true;
var quickobj = $("#Schedule1AppointmentQuickWindow").data("ejDialog");
quickobj.close();
$("#StartTime").ejDateTimePicker({ value: args.startTime });
$("#EndTime").ejDateTimePicker({ value: args.endTime });
if (ej.isNullOrUndefined(args.appointment))
$("#resource").val(args.resources.text); // Here the resource value are displayed while double clicking the cell
if (!ej.isNullOrUndefined(args.appointment)) {
$("#customId").val(args.appointment.Id);
var roomValue = ej.DataManager(this.res1).executeLocal(new ej.Query().where("id", "equal", args.appointment.OwnerId))[0]["text"]; // This query is used to take the resource name based on the resource id in the appointment
$("#resource").val(roomValue); // Here the resource value are displayed while double clicking the appointment
$("#customdescription").val(args.appointment.Description);
$("#StartTime").ejDateTimePicker({ value: new Date(args.appointment.StartTime) });
$("#EndTime").ejDateTimePicker({ value: new Date(args.appointment.EndTime) });
$("#customWindow").ejDialog("open");
}
else
$("#customWindow").ejDialog("open");
}
<code>
Regards,
Karthigeyan.