Friday, July 24, 2020

Navigation in ionic or redirect in ionic

1.  Redirect as return View in mvc code in .ts
     this.router.navigateByUrl("/rec-view/"+d.Srno,{ skipLocationChange:true });

2. Redirect as like return redirectToAction() or return Redirect() in mvc
this.router.navigateByUrl("/rec-view/"+d.Srno,{ skipLocationChange:false });

3. Other redirect
this.router.navigate(['/rec-view/'+d.Srno]);


Thursday, July 23, 2020

Ionic project name change and app display name change or app name change

1. Change project name in config.xml file 
:-
<widget id="m.omgrk.com" 

2. Change display name in config.xml file 
 :- 
<name>om.omgrk</name>




Navigation in ionic or redirect in ionic

1.  Redirect as return View in mvc code in .ts       this .router.navigateByUrl( "/rec-view/" +d.Srno,{ skipLocationChange:tru e...