jQWidgets Forums
Forum Replies Created
-
Author
-
June 11, 2015 at 2:15 pm in reply to: DataTable is not using the localization settings DataTable is not using the localization settings #72352
Ok, I found the problem. The problem lies in jqxKnockout data binding. Without the data-bind=”jqxDataTabe:{}” the table shows me the euro sign. But how can I use localization with data binding?
June 11, 2015 at 1:06 pm in reply to: DataTable is not using the localization settings DataTable is not using the localization settings #72342No errors in the console. When I change datatable to grid, the problem still occurs.
June 11, 2015 at 12:01 pm in reply to: DataTable is not using the localization settings DataTable is not using the localization settings #72334http://jsfiddle.net/08z32oqL/
But actually this is working.December 15, 2014 at 11:00 am in reply to: remote search at page load remote search at page load #64194Hello
I have the same problem. The combobox is requesting with an empty search string and then a second request with my search string. That is unwanted behaviour because I have set minLength to 5. I expect the first request after I’ve typed 5 characters and no request when there is no string (or length < 5) to search for.
Any idea to solve this?Richard
November 13, 2014 at 12:23 pm in reply to: jqxknockout data binding does not work jqxknockout data binding does not work #62696Hi Peter
Thanks. I didn’t noticed that tutorial. I had only had to add one line before ko.applyBinding().
window.ko = ko;
Unfortunately my viewmodel doesn’t update when entering a new value in the widget. I have to figure it out.Richard
November 13, 2014 at 7:26 am in reply to: jqxknockout data binding does not work jqxknockout data binding does not work #62653Hi Peter
jQuery 1.11.1 is actually the same as 2.11.1 but without IE 678 support, I understand now. But my problem is still standing. What about the usage of RequireJS in combination with jqxknockout data binding?
Cheers
RichardNovember 12, 2014 at 7:42 am in reply to: jqxknockout data binding does not work jqxknockout data binding does not work #62556Hello Peter
I know that sample. The problem seems to be requireJS. When not using requireJS and place the scripts in the head, it works. But if I use requireJS (my whole project is build on top of it) the sample won’t work. Is this an known issue and can it be solved? I also notice the very old versions of Jquery and Knockout.
Cheers,
RichardNovember 11, 2014 at 2:31 pm in reply to: change event is triggered every time I click the spin buttons change event is triggered every time I click the spin buttons #62536A workaround is this:
$('.inputMinimumAantal input').on('blur', function(e) { console.log('submit to server using xhr'); // just once when leaving the numberinput });
November 10, 2014 at 2:57 pm in reply to: change event is triggered every time I click the spin buttons change event is triggered every time I click the spin buttons #62477Hello Peter
I understood that. Then I need something like a ‘onblur’ event when I leaving the widget (and the spin buttons also). I want the spin buttons to be part of the ‘value inputting’ behaviour, not the ‘value changing’ behaviour. Is that possible?
Richard
September 25, 2014 at 11:51 am in reply to: Mapping to a JSON HAL response Mapping to a JSON HAL response #60046Solved it myself!. I use the ‘root’ property of the dataAdapter, like this:
datafields: [ {name: 'id'}, {name: 'naam'} ], root: '_embedded>leverancier',
August 13, 2014 at 7:38 am in reply to: Binding to properties of properties Binding to properties of properties #58305Great. I was looking for the same. But actually I want to keep the nesting in my data adapter and assign a ‘map’ attribute (with the > path) in my jqxGrid ‘columns’ attribute. So keep the original json structure as is and read the nested data when I need it. Unfortunately jqxGrid can’t handle this.
July 23, 2014 at 11:21 am in reply to: How to get the value (instead of the label) of a jqxDropDownList in a jqxGrid How to get the value (instead of the label) of a jqxDropDownList in a jqxGrid #57616I see now how it’s working and I’ve implemented that in my code. The weird thing is that I needed to add an extra dataField in the dataSource, according to the example. Now I have 2 fields: one for the code and 1 for the string from the seleceted dropdown option. Is this normal? Actually I only want the code.
Thanks,
RichardJuly 21, 2014 at 12:28 pm in reply to: How to get the value (instead of the label) of a jqxDropDownList in a jqxGrid How to get the value (instead of the label) of a jqxDropDownList in a jqxGrid #57479Hi Peter
Thanks for your response. I based my code on that example you send. I don’t understand where and how to set the ‘value’ and ‘label’. I tried everthing. The example is too complex for helping me with my simple problem. Can you give me more hints or solution?
Thanks,
Richard Jansen -
AuthorPosts