I have 3 grids and at the bottom a chart.
The issue that when I select a row on any of the top 2 grids I would like that the chart will clean the data inside.
and when I will press on the 3’rd grid it will load a new data.
I succeed to do that with
showstuff('jqxchart');
hidestuff('jqxchart');
function showstuff(boxid){
document.getElementById(boxid).style.visibility="visible";
}
function hidestuff(boxid){
document.getElementById(boxid).style.visibility="hidden";
}
Do I have any other way to do that?