How to select ion-select will switch to the other page?

<ion-label >Category</ion-label>
<ion-select [(ngModel)]="category"  [navPush]="listcategoryPage">
</ion-select>

When selected Category will go to the listcategoryPage, but listcategoryPage comes up with a popup menu, I want to disable it then how. Help me hicc

Call all the options in select using ng-options…and in angularjs create a method to access that option

for ex…

In angular

$scope.loadStud(std_Id){
sessionStorage.setItem(“Standard_ID”,std_Id);
}

Now I can access std_Id on another page using session

1 Like

When choose ion-select “Category” will move to ListCategoryPage, but ListCategoryPage comes up with a popup menu

And I want to disable it

In that case your have to remove pop up manually
You have to check it in your coding where popup is coming

1 Like