Details
Description
Results are not being calculated appropriately causing no graph to show patient statistics. Likely cause is line 125 of Dem1Set_ctrlr.js at i2b2.Dem1Set.model.sumCounts = eval("("+hData.toJSON()+")");. Display can be rectified with i2b2.Dem1Set.model.sumCounts = eval("("+hData.toJSON+")"); or i2b2.Dem1Set.model.sumCounts = JSON.stringify(hData);; however, this still does not allow the table to display, only the patient number statistics above the table will be displayed.
I've managed to fix the problem completely by manually doing the toJSON using Prototype's old way: i2b2.Dem1Set.model.sumCounts = eval("("+Object.toJSON(hData.toObject())+")");
BTW Timothy, this should get the table to display if you're still having that problem.