You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I need to use alias to the another pane. But I am unable to access it. I guess this is because of default behavior of transclude.
Please help me with this. Here is my code: <div> <bg-splitter orientation="horizontal"> <bg-pane min-size="100"> <input ng-model="searchText"></label> <div ng-repeat="taskobj in tasks | filter:searchText as filteredResult track by taskobj.id"> {{ taskobj.name }} </div> </bg-pane> <bg-pane min-size="150"> <div ng-repeat="timelineTask in filteredResult track by timelineTask.id"> {{ timelineTask.details }} </div> </bg-pane> </bg-splitter></div>
The text was updated successfully, but these errors were encountered:
I need to use alias to the another pane. But I am unable to access it. I guess this is because of default behavior of transclude.
Please help me with this. Here is my code:
<div> <bg-splitter orientation="horizontal"> <bg-pane min-size="100"> <input ng-model="searchText"></label> <div ng-repeat="taskobj in tasks | filter:searchText as filteredResult track by taskobj.id"> {{ taskobj.name }} </div> </bg-pane> <bg-pane min-size="150"> <div ng-repeat="timelineTask in filteredResult track by timelineTask.id"> {{ timelineTask.details }} </div> </bg-pane> </bg-splitter></div>
The text was updated successfully, but these errors were encountered: