jQWidgets Forums
Forum Replies Created
-
Author
-
October 23, 2017 at 10:00 am in reply to: Destroy widget but keep div Destroy widget but keep div #96864
Hi emberq,
you could surround the widget with a dummy div.
Like this:
<body> <div id="CalendarDiv"></div> </body> function createCalendar(){ $('#CalendarDiv').html('<div id="jqxCalendar"></div>'); $("#jqxCalendar").jqxCalendar({...}); } function destroyCalendar(){ $('#jqxCalendar').jqxCalendar('destroy'); }
October 13, 2017 at 12:56 pm in reply to: Bug: agendaView and orientation: "horizontal", Bug: agendaView and orientation: "horizontal", #96690Yes.
As I wrote please just add in your example the viewtype “agendaView”.
Than you will see that in this view all columns are repeated with the count of resources.This is my workaround:
$("#jqxScheduler").on('viewChange', function (event) { var args = event.args; var resourcesSettings = {}; if (args.newViewType === "weekView" || args.newViewType === "agendaView") { resourcesSettings = { colorScheme: "scheme05", orientation: "none" //dataField: "resourceId", //source: new $.jqx.dataAdapter(source) }; //$("#jqxScheduler").jqxScheduler({ editDialog: false }); $("#jqxScheduler").jqxScheduler({ contextMenu: false }); } else { resourcesSettings = { colorScheme: "scheme05", orientation: "horizontal" //dataField: "resourceId", //source: new $.jqx.dataAdapter(source) }; //$("#jqxScheduler").jqxScheduler({ editDialog: true }); $("#jqxScheduler").jqxScheduler({ contextMenu: true }); } $("#jqxScheduler").jqxScheduler({ resources: resourcesSettings }); });
October 12, 2017 at 10:35 am in reply to: Bug: agendaView and orientation: "horizontal", Bug: agendaView and orientation: "horizontal", #96662It works? Could you tell me the number of fixed version?
We use 5.3.2. and this problem happens still again.October 12, 2017 at 10:31 am in reply to: Bug: appointmentDataFields missing in appointmentChange event Bug: appointmentDataFields missing in appointmentChange event #96661So I ask you hopefully for the feature/functionality to not losing defined properties anymore.
Thanks a lot.October 12, 2017 at 10:24 am in reply to: getSelection with cellClick event getSelection with cellClick event #96660Hello Peter,
yes, The “cell” argument has data-view attribute.
But it contains not the resource number but rather the column number.$(“#jqxScheduler”).on(‘cellClick’, function (event) {
var dataview = event.args.cell.attributes[1];
}October 10, 2017 at 10:42 am in reply to: jqxScheduler Appointment Readonly Status jqxScheduler Appointment Readonly Status #96619Ups, how embarrassing, because it’s very easy.
$("#jqxScheduler").on('editDialogOpen', function (event) { fields.subject.prop(“readonly”,true); }
October 10, 2017 at 9:56 am in reply to: jqxScheduler Appointment Readonly Status jqxScheduler Appointment Readonly Status #96615Hi 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
fewrOctober 6, 2017 at 1:30 pm in reply to: getSelection with cellClick event getSelection with cellClick event #96544Hi Peter,
yes, it’s easy to get the date.
But i need to know the “resourceId” too (this value isn’t part of the argument from the cell click event).I wish you a nice weekend.
September 29, 2017 at 6:23 am in reply to: Pretty weak export function Pretty weak export function #96402I send you a list of mistakes and you just say, it’s not necessary to correct it?
* none timeline
* none columns with the weekdays
* none cell-span with the appointments
* none colors
* wrong language
* useless column id in the file
* At all it’s looks a little bit like the “Agenda View” but not like a diagram.Nice service…
September 29, 2017 at 6:14 am in reply to: Bug: agendaView and orientation: "horizontal", Bug: agendaView and orientation: "horizontal", #96401Hello Peter,
please fix it in such a kind, that these examples with horizontal-resources works also in the future
and additionally should it be possible to add the AgendaView at the same time.Thanks a lot
fewrSeptember 28, 2017 at 6:07 am in reply to: Pretty weak export function Pretty weak export function #96372Good Morning Peter,
what do you think how long will it takes to fix/optimize?
Very you well
fewrSeptember 27, 2017 at 1:59 pm in reply to: Pretty weak export function Pretty weak export function #96359Hi Peter,
the idea is nice but not the execution.
Like I wrote is the result totally corrupt.
Best regards
fewrSeptember 27, 2017 at 1:22 pm in reply to: Uncaught TypeError: Cannot read property 'jqxAppointment' of undefined Uncaught TypeError: Cannot read property 'jqxAppointment' of undefined #96350Hello yougotnet,
please pay attention that the id from appointmentDataFields is case sensitive and have to match with the name from the source-dataFields.
March 2, 2017 at 10:49 am in reply to: Data export from my site running though yours!? Data export from my site running though yours!? #92036This is a miserable behavior!
It’s an absolutely No-Go to spy us by default!At least you should create *export example* a hint with big red letter that jQWidgets scrape our data.
BTW: jQWidgets is such a good product that my company purchased a license.
But since today I’ll not recommend jqwidgets anymore.March 2, 2017 at 8:31 am in reply to: Bug: Grid initial filter doesn't work date and cellformat Bug: Grid initial filter doesn't work date and cellformat #92035Good Morning Peter,
in my case contains the date column only the first day of each month (1.MM.yyyy).
It would be much more convenience to be able use a checked list filter instead of the the calender/range.The thing is that generally dates and checklist are compatible.
So filter and checked list works fine, even with cellsformat.But it’s doesn’t work together with a initial filter.
Neither with a stringfilter (matching to the cellformat), nor with a datefilter (date object).Until a bugfix, my workaround is to convert the dates already in the source as a strings.
But this is without the possibility easy to use the cellformat for the dates. -
AuthorPosts