I am new to angularjs, I want to create grid of 12*12
I was able to get it using following options - 1. Use nested for loop and append elements to the parent div appropriately. 2. Create static grid
but above options are not involving angular framework at all. :(
What is the best way to do it in angular ? means where should I write the loop (in controller ?) and how it will be rendered ? I tried ng-repeat
but I could not find the way to get it done (on what data should I iterate ?).
I understand that, this might be silly question. :(