jQWidgets Forums
Forum Replies Created
-
Author
-
Will it be in 2013 Q1 due roadmap?
Thank u. I understand the behavior.
Please, another little question: How is the property called, that when I mouseovered above the cell, the cell is grayed out. But I need that nothing would be happened and cell color is always staing white and does not respond to mouse move.
September 21, 2012 at 9:24 am in reply to: Several ValueMember in JSON array Several ValueMember in JSON array #8288What is the right “code” tag here? “
...
” didn’t workSeptember 21, 2012 at 9:23 am in reply to: Several ValueMember in JSON array Several ValueMember in JSON array #8287Thank u!
I found solution too:
$("#jqxListBoxTeams").bind('select', function (event) {
if (event.args) {
var item = event.args.item;
if (item) {
var index = $("#jqxListBoxTeams").jqxListBox('getSelectedIndex');
var subteam = dataAdapter_jqx_listbox_teams.records[index]['subteam'];
var subsubteam = dataAdapter_jqx_listbox_teams.records[index]['subsubteam'];
var labelelement = $("");
labelelement.html("Label: " + item.label);
var valueelement1 = $("");
valueelement1.html("Value1: " +subteam);
var valueelement2 = $("");
valueelement2.html("Value2: " +subsubteam);
$("#SelectionLogTeams").children().remove();
$("#SelectionLogTeams").append(labelelement);
$("#SelectionLogTeams").append(valueelement1);
$("#SelectionLogTeams").append(valueelement2);
}
}
});
September 21, 2012 at 8:41 am in reply to: Several ValueMember in JSON array Several ValueMember in JSON array #8281Dimitar, can u show the example?
September 13, 2012 at 7:45 am in reply to: Logarithmic scale on Chart Logarithmic scale on Chart #7867Thank u very much!
Thank u very much!
June 26, 2012 at 11:09 am in reply to: Incorrect rendering jqxChart in IE8 Incorrect rendering jqxChart in IE8 #5343– version is not latest, now it is 2.0.0. i dont whant to make updating, because i created my own color schemes, but they r don’t located in separate config file. in case of updating i need to merge my color schemes to jqxcharts.js file (it’s hard because data in this ur file is not structured and it is hard for reading). so custom color schemes should be located in separate config file.
– for all size of canvas issue is reproduced for IE8 (and only in IE8)
– i’ll provide examlpe several times laterHi, Peter.
When can we see the bars?
The problem was in that comma:
var source = { datatype: "json", datafields: [ { name: 'Proj' }, { name: 'Bug' }, { name: 'Time' } ], url: 'index.php'<span style="color: red;">,</span> };
FireFox and Chrome aren’t warning, but IE8 warnings and didn’t draw the Chart. If delete it all would be fine.
Peter,
somth strange.. ur example is working in IE8, but if i use dataApapter with JSON source, IE8 dont draw the chart.. i dont know how locate the bug*with this ur DOCTYPE. Tegs had parsed incorrectly.
With this Charts are no longer drawn in Chrome and FireFox))
I’ll send u my example later.May 24, 2012 at 7:42 am in reply to: Get X-Value via Chart's event Get X-Value via Chart's event #4329That’s greate!
Thank u very much!May 23, 2012 at 7:13 am in reply to: Get X-Value via Chart's event Get X-Value via Chart's event #4292Thank u, Peter.
But I use dataAdapter instead of sampleData.
How should this example works?var dataAdapter = new $.jqx.dataAdapter(sampleData);
dataAdapter does not know about “[e.elementIndex].Day”, so “alert(dataAdapter[e.elementIndex].Day)” would not work(((
-
AuthorPosts