jQWidgets Forums
Forum Replies Created
-
Author
-
Hello Peter,
Will we be seeing this integration any time soon?
May 17, 2017 at 12:37 am in reply to: Sort Grid by row background color Sort Grid by row background color #93661Hi. Any response?
Hi Peter,
I assigned a specific id for the nested grid
var grid = $($(parentElement).children()[0]); $(grid).attr('id', 'details_' + id);
However, I get the error
jqxcore.js:7 Uncaught Error: Invalid Selector - #details_2! Please, check whether the used ID or CSS Class name is correct.
when I tried to $(“#details_2”).jqxGrid(“updatebounddata”);
Help.
Thanks!
Any reply for this post from the admins?
This would be a great feature.October 22, 2015 at 6:11 am in reply to: tooltip not showing in version 3.9.0 tooltip not showing in version 3.9.0 #77214Hi Peter, will send via email since the sample data are actual ones.
October 15, 2015 at 9:42 am in reply to: Line Chart Max # of records Line Chart Max # of records #76894Hi Vladimir,
I’m not sure this is the same because with this one, the browser doesn’t freeze. It simply displays a blank div with a title. The other one freezes the entire browser.
Got it! Thanks for the response Vladimir!
Hello again Vladimir,
How can I get the existing settings of the chart?
I tried this:
var originalSettings = $('#jqxchart').jqxChart('settings');
but it wont work. I need to get the original settings so I can use the jquery.extend method and override the original settings with the new one.
There are quite a few settings I need to change.Please help. Thanks!
Great! Thanks Vladimir!
Hi Ivailo,
Thanks for the reply.
I noticed this error when I hover or click on the img on your first example.
Uncaught TypeError: Cannot read property '_disabled' of undefined
The second example works clean though. Thanks!
Regards,
KarenSeptember 3, 2015 at 8:26 am in reply to: DataAdapter records from localdata source DataAdapter records from localdata source #75455Hi Peter,
Just in case some users may encounter the same problem, I might as well share it in this forum.
Also, as mentioned in my email, I’ve been using the one same as the demo sample from
Demo dataAdapter bindingtojson:var dataAdapter = new $.jqx.dataAdapter(source, { loadComplete: function (records) { // get data records. var records = dataAdapter.records; // get the length of the records array. var length = records.length; // loop through the records and display them in a table. var html = "<table border='1'><tr><th align='left'>Name</th><th align='left'>Type</th><th align='left'>Calories</th><th align='right'>Total Fat</th><th align='left'>Protein</th></tr>"; for (var i = 0; i < 20; i++) { var record = records[i]; html += "<tr>"; html += "<td>" + record.name + "</td>"; html += "<td>" + record.type + "</td>"; html += "<td>" + record.calories + "</td>"; html += "<td>" + record.totalfat + "</td>"; html += "<td>" + record.protein + "</td>"; html += "</tr>"; } html += "</table>"; $("#table").html(html); }, loadError: function (jqXHR, status, error) { }, beforeLoadComplete: function (records) { } });
…except that I am using a localdata as source. I get the undefined error when using the localdata as source.
Hope I have explained this issue well.
September 3, 2015 at 1:26 am in reply to: DataAdapter records from localdata source DataAdapter records from localdata source #75425Hi Peter,
What do you mean by “instance is undefined”? As you can see in my code, I have defined it.
var dataAdapter= new $.jqx.dataAdapter(source,
{async: true,
autoBind: true,
loadComplete: function (records) {
dataAdapter.records[0];My concern is I cannot get the records when I am using a localdata as source. I have tried it with a remote source (url) and it worked.
Regards,
KarenAugust 28, 2015 at 7:46 am in reply to: multiselect cascading combobox multiselect cascading combobox #75235Hi Ivailo,
Saw your sample demo. I’ve tried that too, however, it does not allow multiselect feature. How can we integrate the multiselect feature?
August 28, 2015 at 3:49 am in reply to: multiselect cascading combobox multiselect cascading combobox #75225I tried it but it wont work. Am I missing something?
Autocomplete, multiselect cascading combobox/August 28, 2015 at 3:44 am in reply to: multiselect cascading combobox multiselect cascading combobox #75224and with autocomplete too.
-
AuthorPosts