angularjs - Difficulty in building Dashboard Side Control Panel -


i'm trying build side control panel dashboard similar http://demo.neontheme.com/dashboard/highlights/

can give me pointers examples can start building ?

thanks

take @ bootstrap's vast range of components (if haven't already), , break down functionality according wish accomplish. example, @ glance:

i can see page fluid, , left-hand navigation takes 2/12 (by default, bootstrap utilises 12-column grid system).

<div class="container-fluid">   <div class="row">     <div class="row">       <div class="col-md-2">         <!-- menu -->       </div>       <div class="col-md-10">         <!-- content -->       </div>     </div>   </div> </div> 

accordions in use collapse/expand menu items, can harness bootstrap's collapse.js achieve this. also, menu items have labels and/or badges attached them, bootstrap caters for.

resources:


Comments