$.getJSON("survey_dashboard/get_totais", function (data) {
$.each(data, function (g, grupo) {
if (grupo.GRUPO == 'TOTAL') {
total = grupo;
} else if (grupo.GRUPO == 'ATIVO') {
ativo = grupo;
} else if (grupo.GRUPO == 'RECEPTIVO') {
receptivo = grupo;
} else if (grupo.GRUPO == 'VIVO') {
vivo = grupo;
}
});
survey_dashboard/get_totais
...
public function get_totais() {
$data = array();
$data = $this->survey_model->new_get(array('query' => "CALL proc_pesquisa_totais()"));
die(json_encode($data));
}
Experts Exchange Solution brought to you by
"The solutions and answers provided on Experts Exchange have been extremely helpful to me over the last few years. I wear a lot of hats - Developer, Database Administrator, Help Desk, etc., so I know a lot of things but not a lot about one thing. Experts Exchange gives me answers from people who do know a lot about one thing, in a easy to use platform." -Todd S.
Experts Exchange Solution brought to you by
Facing a tech roadblock? Get the help and guidance you need from experienced professionals who care. Ask your question anytime, anywhere, with no hassle.
Start your 7-day free trialFrom novice to tech pro — start learning today.
Experts Exchange Solution brought to you by