I am working on a WebApp that has a unique HTML layout
Nav-column-| Center Column---- | Right Column
Link1---------|Data corresponding|Data Corresponding to Link1-A
Link2---------| to Nav-column------| (ie based oon Center Column Link)
Link3---------| Link1-A--------------|
----------------| Link1-B------------- |
My goal is to leverage AngularJS' capabilities to the fullest. I have divided the three columns into three separate views, with the Nav-column loading initially. Now, my objective is to modify the MODEL/DATA shown in the center column based on the link selected by the user in the nav-column. How can this be achieved?
I recognize that altering the view itself isn't necessary (which would be counterproductive, in my opinion). Instead, the data should be the focus of any changes.