I have an array of arrays that contain objects, and im looking for a way to loop over the inner arrays of the array, something like this:
<div data-bind="foreach: questions">
<div data-bind="foreach: subArray of questions">
<span data-bind="text: Title"></span>
<span data-bind="text: Answer"></span>
</div>
</div>
How can i access the inner arrays of the questions observableArray so i can loop over the elements?
thanks in advance for any help!