jQWidgets Forums
Forum Replies Created
-
Author
-
June 9, 2017 at 10:07 am in reply to: Mix resources orientation settings depending on view Mix resources orientation settings depending on view #94248
Thanks for the answer, hope that you will make it !
June 8, 2017 at 10:36 am in reply to: AgendaView with horizontal resources AgendaView with horizontal resources #94214Hi,
I also plan to used the horizontal view and I like the AgendaView but still doest’t work as expected…
Is it a planned feature or not ?
Thanks for your reply.
May 10, 2017 at 2:33 pm in reply to: Is it possible to hide the resources list at the bottom or handle this Is it possible to hide the resources list at the bottom or handle this #93406Hello,
Thanks for the quick & working answer !
Hi,
I finally managed to get this working by using async:false to be sure the list is ready before loading the dialog box, but the fisrt time, it is slowing the opening of the modal box.
Any other solution ?
var source_customer = { datatype: "json", dataFields: [ { name: 'customer_name' }, { name: 'customer_id' } ], id: 'customer_id', type: "GET", async:false, url: '<?URL;?>agenda/getcustomer' };
Hi again,
I tried in JSEDITOR and it works, so I think that comes from the ajax loading.
Is it possible to test ajax loading with JSEDITOR ?
Indeed, I noticed that on first opening, the value is setted and then the ajax is calling the list of custome and then whos the “Choose customer…” placeholder of the JQwComboBox.
Hi Peter,
Thanks for your reply.
That’s what I am doing, and it works, but I have to open the dialog, then close it and when I reopen it, the combobox is filled with the correct name.
Here is my code in editDialogCreate
customerContainer = "<div>"; customerContainer += "<div class='jqx-scheduler-edit-dialog-label'>Cliente</div>"; customerContainer += "<div class='jqx-scheduler-edit-dialog-field'><div id='customer1'></div></div>"; customerContainer += "</div>"; fields.resourceContainer.append(customerContainer);'
$j(“#customer1”).jqxComboBox({
placeHolder: ‘Choisissez une cliente…’,
width: ‘100%’,
height: 25,
source: dataAdapter_customer,
selectedIndex: -1,
minLength:3,
displayMember: “customer_name”,
valueMember: “customer_id”,
searchMode:’containsignorecase’,
autoComplete:true,
search: function (searchString) {
dataAdapter_customer.dataBind();
},
});` -
AuthorPosts