Link to home
Start Free TrialLog in
Avatar of theo1967
theo1967

asked on

I just want to loop a dataset

When a person clicks on a combo box the data is retrived with out a problem.  then I want to loop the dataset.

var ss=''
  while(business_ds.hasNext()) {
   var  q =  business_ds.currentItem.Question;
   var  a =  business_ds.currentItem.Answer;
    var author =  business_ds.currentItem.Author;
   ss += q;
   ss += a;
   ss += author;
    business_ds.next();
 }

this doesnt work for me

Whats wrong
ASKER CERTIFIED SOLUTION
Avatar of Deepak Vasudevan
Deepak Vasudevan
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial