State of ColumList in SAPUI5 - sapui5

I have a SAPUI5 m.columnlist contained inside m.table. I am supposed to click on any one of the item of columnlist which takes you to new page. From new page when you navigate back to the old page, the list scrolls to the top. I wished to maintain its state from where it is clicked and that item to be selected which was selected previously.
Getting no idea ho to go ahead with this.

Related

Blazor 6.0, List/details from EF, how to maintain list state when coming back?

If I create a static HTML page with a long list of clickable items, click one item to navigate to the item details page, and then press the mouse back button, the web browser goes back to the exact position where I was.
I wondered if this is possible when creating a Blazor 6.0 app that shows a list of item from Entity Framework Core 6.0. I tried the official sample form Microsoft, and as I worried, when I clicked the mouse back button, the list page was reloaded and shows the beginning.
Is it possible to keep the list state when navigating to item details page and coming back? I mean, it is the same list, so why reload it?

AEM: Adding an item in tab/carousel component editor does not reflect instantly

When adding a child component to Tabs/Carosel (or any component that uses common panelselect), it does add a tab but it does not show up in panel selector view (to give it a name). However if user closes and reopens that panel to add item, previously added item shows up

Device back button has different result rather than getx toNamed

I have two screen, first is for load list off all shop data and second is the detail screen of the shop. When I'm in second page and go back with arrow icon with Get.toNamed the first screen will load all list again but when I in the second page and I go back with my device back button in the first page it just showing loader icon and the list not loading. Can someone help me why it can be happen ?
Use Get.off() or follow this article.

Ionic either doesn't show back button or page doesn't load at all

I am trying to create a new page from an existing page with a back button. I have recreated the issue here in a plunkr. In the trip analytics option When I click the first card i.e. Enter Home address. I want the todayDetail .html page to come up with a back button. I have already tried two approaches
First approach The ng-click approach. In which I give $state.go(statename) to give that page. But then I wouldn't get a back button as the navigation stack is changed.
Second approach - If I keep the navigation stack i.e. keep the state name as initial.trips.today.todayDetail. The page doesn't load at all.
What is the issue? How should I go about it?

AngularJS tab-like behavior for list/detail view on same page where form needs to change based on selected list item

I have a list/detail page which I've based off of this question.
It works perfectly for displaying the information, however, my detail view in this case needs to be a form.
So my question (which I really hope some of you smart folks can help with) is two-fold:
How can I add an active class on the list item I clicked, and remove it once I've "closed" the detail view, or clicked on another list item?
How can I update the form in the detail view, and have the user potentially make changes to that form, and still have it update the correct item in my model?
Imagine a list of phones on the left, with an edit form on the right. The user would choose a phone on the left, change the number in the form on the right, and hit save.
I come from a jQuery background, and I'm still trying to get my head around AngularJS.
Any help would be greatly appreciated.