When clicking on a result i need to show that detaIls on same place without going to another page ( like ajax in web) . I click first row in search result got that details as shown
Here List of projects replaced by Project details *
Is that possible ? when click item i call a provider to take web service data. Please advise how it can done with a sample …
@anespa You can do your code similar to the following, where in your component you have a public property items (that you could populate, for example, doing an http request to your server).
Here I made the code simple but functional, to be easy to understand. You would have a property selectedItem in your ts file without value initially, and when the user clicks an item in the list, the selectedItem property receives that value. There is an ngIf that shows the list when there is no selected item, and the item details when there is a selected item.
So, when you select the item the list is not shown anymore and the item details is shown. I included a buttom in the bottom of the item details to return to show the list again and hide the details (actually, it removes the details from the DOM).
Just have in mind that preserving the scroll in the list could be trick. I don’t know if this will work well in an ionic page because the ion-content has its own scroll. You could give a look at ion-scroll and make the list hidden (instead of removing it from the DOM with ngIf) to preserve the scroll position.