Hello,
I have 2 jqx charts and 2 jqx grid on same page. Data are same but I have 2 dataAdapters because they show different views, one set of chart and grid shows one view and the other set shows transposed grid and chart (rows are columns). Grids are editable. After I edit grid, on cellendedit function, on success I do something like this:
dataAdapter1.dataBind();
dataAdapter2.dataBind();
$(‘#jqxChart1’).jqxChart(‘refresh’);
$(‘#jqxChart2’).jqxChart(‘refresh’);
to refresh my grids and chart. Everything works fine!
Then I put 2 jqx extenders on page, each contains one grid and one chart. If the extenders are both opened everything is still OK, but if I close one extender and if I make edit in grid of the opened extender it updates value of grid, refreshes chart in opened exteneder, BUT when I open the closed extender grid is updated and the chart is not. So if the extender is closed the chart is not updated (plotted) with new value.
Any ideas?
Thank you
Best regards