jQWidgets Forums
Forum Replies Created
-
Author
-
September 27, 2017 at 8:20 pm in reply to: scheduler state/cache – bug/behavior scheduler state/cache – bug/behavior #96371
Hi Peter,
great idea,thank you.September 27, 2017 at 2:28 pm in reply to: scheduler state/cache – bug/behavior scheduler state/cache – bug/behavior #96365Hi Peter,
any idea how I can workaround this ?Kind Regards,
VladSeptember 20, 2017 at 9:12 pm in reply to: selectItem/selectIndex not working selectItem/selectIndex not working #96194Hi Peter,
as I said before, I’ve seen all the demos/examples/forums, none is close to my case.
In you main demo you are using string to pass to selectItem and also you have array passed as source (single dimension), my case is List of value-Label .
Demos are pretty basic though.Kind Regards,
VladSeptember 20, 2017 at 3:22 pm in reply to: selectItem/selectIndex not working selectItem/selectIndex not working #96186Hi Peter,
that I figured out :), you said I have to pass ListBox…. any pseudo code about this?Kind Regards,
VladSeptember 20, 2017 at 9:48 am in reply to: selectItem/selectIndex not working selectItem/selectIndex not working #96162Hi Peter,
I’ve seen it, yet it doesn’t provide enough info, at least for me – what kind of argument is expected (is it value or label, is it object of particular type?).
In my case there is value – numeric and label – string type.
I’ve seen all the online examples/demos/forums
I will modify the code to be runnable as it is part of dynamic scriptlet.Kind Regards,
VladSeptember 20, 2017 at 9:16 am in reply to: selectItem/selectIndex not working selectItem/selectIndex not working #96160about 1. …. something like $(“#client1”).jqxDropDownList(‘selectItem’, new jqxListBox({source: dataAdapter_selectedClient}));?
September 20, 2017 at 8:17 am in reply to: selectItem/selectIndex not working selectItem/selectIndex not working #96155Hello,
sorry I’m new to JavaScripthere is the jsfiddle:
https://jsfiddle.net/pLffforb/August 30, 2017 at 1:47 pm in reply to: Obtain new appointment data Obtain new appointment data #95736so finally this whole thingy translates in my inability to access appointmentDataFields, from the above sample all attempts fails:
appointment.repeat, appointment[‘repeat’] (for example), I did some reflection and I can see there is repeat field:for(var key in appointment) {
if(appointment.hasOwnProperty(key) && typeof appointment[key] !== ‘function’) {
alert(key);
}
}so I’m a bit puzzled, this translates probably into JS know-how rather then specific jqWidget
August 28, 2017 at 3:08 pm in reply to: Obtain new appointment data Obtain new appointment data #95685Still …… I can’t access the data from the fields:
$(“#scheduler”).on(‘appointmentAdd’, function (event) {
var args = event.args;
var appointment = args.appointment;
$(“#log”).html(“appointmentAdd is raised”);
alert(appointment.activity);in the data fields I have activity – alert gave undefined.
Kind Regards,
VladAugust 28, 2017 at 1:06 pm in reply to: Obtain new appointment data Obtain new appointment data #95675Thanks Hristo,
will look into it.Kind Regards,
Vlad -
AuthorPosts