Lines Matching refs:pageStack

301   pageStack: NavPathStack = new NavPathStack()
304 Navigation(this.pageStack) {
318 this.pageStack.pushPath({ name: "PageOne", param: "PageOne Param" })
319 this.pageStack.pushPathByName("PageOne", "PageOne Param")
325 this.pageStack.pushPathByName('PageOne', "PageOne Param", (popInfo) => {
333 this.pageStack.pushDestination({name: "PageOne", param: "PageOne Param"})
339 this.pageStack.pushDestinationByName("PageOne", "PageOne Param")
353 this.pageStack.pop()
355 this.pageStack.popToName("PageOne")
357 this.pageStack.popToIndex(1)
359 this.pageStack.clear()
368 this.pageStack.replacePath({ name: "PageOne", param: "PageOne Param" })
369 this.pageStack.replacePathByName("PageOne", "PageOne Param")
371 this.pageStack.replaceDestination({name: "PageOne", param: "PageOne Param"})
385 this.pageStack.removeByName("PageOne")
387 this.pageStack.removeByIndexes([1,3,5])
389 this.pageStack.removeByNavDestinationId("1");
398 this.pageStack.moveToTop("PageOne");
400 this.pageStack.moveIndexToTop(1);
409 this.pageStack.getAllPathName()
411 this.pageStack.getParamByIndex(1)
413 this.pageStack.getParamByName("PageOne")
415 this.pageStack.getIndexByName("PageOne")
435 this.pageStack.setInterception({
471 @Provide('NavPathStack') pageStack: NavPathStack = new NavPathStack()
481 Navigation(this.pageStack) {
486 this.pageStack.pushPathByName('DialogPage', '');
497 @Consume('NavPathStack') pageStack: NavPathStack;
507 this.pageStack.pop()
608 pageStack: NavPathStack = new NavPathStack()
611 this.pageStack.disableAnimation(true)
618 pageStack: NavPathStack = new NavPathStack()
620 this.pageStack.pushPath({ name: "PageOne" }, false)
621 this.pageStack.pop(false)
676 this.pageStack.pushPath({ name: 'ToPage' }, false)
772 pageStack : NavPathStack = new NavPathStack();
775 Navigation(this.pageStack){
777 this.pageStack.pushPathByName("PageOne", null, false);