How to achieve this layout in .Net Maui? - maui

I have a .Net Maui app for selling some items.
Basically items are organised this way :
Pages
Categories
Items
I need the pages to work like tabbed pages. And inside a page there are categories summarized on the top of the page. And then items inside. And if I scroll to the bottom, the categories are moving to adapt to the current visible items.
Here is an example :
Here the page is Boissons & Eaux and the categories are Jus frais & Smoothies, Jus et néctars ...
And if I scroll to the bottom, the categories scroll to the right like this :
etc.
I know how to create tabbed pages. And for the categories, I'm thinking about the grouping feature of the collection view. However this doesn't seem to summarize categories separately. It just creates a header for each category as per the documentation here.
Does anyone know how to get a layout similar to this please ?
Thanks. Cheers,

Related

best way to present multiple listview

I would like to know your idea about the best method to present several personalized horizontal lists, in the spotfy style.
With different preferences and musical styles.
The best way would be to create several listviews? or structure a database and make it somehow present only a few things on the user's homepage?
any suggestion?
i dont think there would be any problem displaying different list view on home showing few items ( 3 or 4 ) of that list and a button above each listView as View All on tapping using that list all items on that category personal screen
you can add multiple ListView as you can possible Try SingleChildScrollView for multiple ListView or Layouts
Refer Official Docs : docs

Typo3, Multiple News Details & Lists on one page

I want to use the News system extension from Georg Ringer like this:
Multiple News Details & Lists All on one page
the Detail view on top of the "cards" of the List view should show the Detail of the item clicked on
The behavior seems like to allow multiple list but only 1 detail view
Detail View of "Services"
List View of "Services"
------ other stuff
Detail View of "Projects"
List View of "Projects"
------ other stuff
Detail View of "Sectors"
List View of "Sectors"
Has anyone experience with this?
I would change the list view to handle the first news entry with much more information. In Fluid you have access to all needed fields for displaying it like in detail view.
Then, you only need three list views on the page with your special template. No need for a detail view.
In general it's possible what you desire but you've to adjust the detail-view in the plugins statically to a special detail or you always will only be able to display one detail at a moment, no matter which category because news is like probably all TYPO3-extensions not programmed with the ability to transfer parameters for several plugins on a page at once.
Many years ago when extensions still have been programmed fundamentally different I had some similar desires related to other extensions and programmed something which transferred the parameters always related to each plugin on a page, so it was possible to regulate several plugins of the same type on a page separated. Today it will be harder probably to implement something like that.
What you can do is to look in the manual about the AJAX-posibilities of news. There might be still an option to fetch the detail for each of the categories separated, perhaps even on page-load already, but it will be a nifty setup which takes probably some time.

After creating a top level category, the category itself is part of it

I recently created a new category which should appear on my page. This category should have 3 Items which should be as well displayed directly on the main page. But instead my category is shown on the top page, but I have to select it first to view my 3 Items in it.
To show my 3 Items, I can click on either "Connectivity Management".
It looks as if I had 2 Categories in each other, but that's not the case. I definitely have just one.
I had a look at the servicenow documentation about categories, but there was no hint about my problem.
I am using the FUJI release.
Any Idea how I can remove the bottom category?
I have other top level categories which work just as I wanted them, I compared both and found no difference.
How are you adding this to your page and what type of page are you adding this to?
I've seem something similar happen when adding this to a Homepage such as the ESS Homepage. Is this what you are trying to do?
When selecting to add a Catalog Category to a home page you will have two options, Category Details and Category Items
If you choose Category Details, you see something similar to what you see.
If you instead choose Category Items, you will see the items within the category

use of UIpageControl

Can any one explain what is the specific usage of UIPagecontrol in iPhone please.
I am using it for pagination in scroll view. Is there any other specific purpose for it???
Reading documentation for UIPageControl help you to understand uses of pagination.
Pagination, which automatically separates the content in your form into smaller groups of rendered content. When you use pagination, these groups of content are automatically formatted to fit the target device. The form also renders user interface (UI) elements that you can use to browse to other pages.
Here is the more simple explanation
http://www.smashingmagazine.com/2007/11/16/pagination-gallery-examples-and-good-practices/
You can know how many pages are there and also tapping on it ll navigate to next page.

Two UITableViewControllers and One UISearchDisplay

I'm new to iPhone programming and is faced with a task to show data on of Books where the first table view shows the books in my library using the title of the book to sort and another table view to show the authors. There is a need to have a search bar on both of the table views and when used to search will show results categorized as certain results is returned according to the author and the others returned according to the title. Something similar to the search results returned by the iPod App.
Thanks in advance to all who can shed light.
From what I gather, it sounds like you need to organize this somehow. I recommend you try a tabbed-based application. Create three tabs with the first two having navigation controllers for your tables. The first tab will have the tableView that sorts by book title. The second tab will have the tableView that sorts by the author. The third tab can do the search for either case. Hopefully, that points you in the right direction.