I have a simple layout like so:
__________________ ________
| | | Side |
| Main section | | -bar |
|________________| |______|
The "Main section" exposes forms to the user; based on their selection that "Main section" state
should change (i.e.: a different partial should be loaded). How do I facilitate this with UI.router
?
E.g.: change only columnOne
in the /about
state: http://plnkr.co/edit/IzimSVsstarlFviAm7S7
<div ui-view="newcontent0"></div><div ui-view="sidebar"></div>
,<div ui-view="newcontent1"></div><div ui-view="sidebar"></div>
&etc.? – Cripple