This topic contains 6 replies, has 3 voices, and was last updated by fewr 6 years, 12 months ago.
Viewing 7 posts - 1 through 7 (of 7 total)
Viewing 7 posts - 1 through 7 (of 7 total)
You must be logged in to reply to this topic.
jQuery UI Widgets › Forums › Scheduler › jqxScheduler Appointment Readonly Status
Tagged: angular scheduler, bootstrap scheduler, javascript scheduler, jquery scheduler, jqwidgets scheduler, jqxScheduler, jqxScheduler Appointment Readonly Status
This topic contains 6 replies, has 3 voices, and was last updated by fewr 6 years, 12 months ago.
Hello.
I was wondering is there a way to make the status of an appointment readonly, meaning the user cannot make any selection in the dropdownbox.
I have been trying to use the following but this does not help.
fields.status.prop("readonly",true);
fields.statusContainer.prop("readonly",true);
Thanks in advance.
Hello jqwidgetsdev,
Please, take a look this demo:
http://www.jqwidgets.com/jquery-widgets-demo/demos/jqxscheduler/scheduler-appointment-restrictions.htm?arctic
Best Regards,
Hristo Hristov
jQWidgets team
http://www.jqwidgets.com
Hello Hristo.
My question is different.
I want the user to be able to edit an appointment, but I do not want the user to edit that status. The status should be readonly.
Please let me know if this is supported, if so, please show me how.
Thank you.
I also want to make the “subject” and “description” read only.
How to accomplish this?
Thanks.
Hello jqwidgetsdev,
The meaning of this status is follow:
readOnly – boolean field. Defines whether the appointment is editable.
You could find out about this and more in our API Documentation.
Best Regards,
Hristo Hristov
jQWidgets team
http://www.jqwidgets.com
Hi Hristo,
I like to do the same like jqwidgetsdev.
So how it’s possible to disable an input field from the “editDialog“.
E.g. should is the subject visible but not editable.
It’s not my goal to disable the whole appointment in the view.
Thanks in advance
fewr
Ups, how embarrassing, because it’s very easy.
$("#jqxScheduler").on('editDialogOpen', function (event) {
fields.subject.prop(“readonly”,true);
}
You must be logged in to reply to this topic.