Multiple If Statements within a rowCallback

Multiple If Statements within a rowCallback

BigDataWarehouseBigDataWarehouse Posts: 23Questions: 10Answers: 0

I'm trying to have more than 1
--------1---------
if(condition){
do this...
}
else{
else...
}
--------2---------
if(condition){
do this...
}
else{
else...
}

but I get a json format error?

This question has an accepted answers - jump to answer

Answers

  • rf1234rf1234 Posts: 2,944Questions: 87Answers: 416
    Answer ✓

    You can have as many "if" statements as you like in a rowCallback. The sky is the limit. I guess you have a different problem. You should post your code ...

  • BigDataWarehouseBigDataWarehouse Posts: 23Questions: 10Answers: 0

    my bad... I got it right! that's @rf1234

This discussion has been closed.