angularjs - Two scroll windows -
i have similar project:
http://codepen.io/dmastag/pen/oxorpz
but additionally, window on right contains tabs (md-tabs) on click switch windows have own scrolls. problem is, cannot use scroll function on right window, on left one. idea how solve that? goal extend list in right window when scroll @ bottom of list.
i tried selector md-tab-content, because suspected window scroll, says value null?! doing wrong? have other solutions solve problem? greatful.
the dom tree looks in browser:
<md-tabs> <md-tabs-wrapper> <md-tabs-content-wrapper> <md-tab-content> </md-tab-content> </md-tabs-content-wrapper> </md-tabs-wrapper> </md-tabs>
do have plnkr or codepen code ? did tried like:
md-tabs-wrapper{ position: fixed; top: 0px; left: 0px; background-color: rgb(68, 114, 196) !important; z-index: 1000; width: 100%; } md-tabs.md-dynamic-height md-tabs-content-wrapper { top: 48px !important; }
Comments
Post a Comment