Questions tagged [expandable]

Expandable refers to a property of some UI elements which can be expanded by a user gesture such as hovering or clicking on them.

301 questions
0
votes
1 answer

How to make Expandable with only Cells (NOT SECTION/ HEADER) with UITableView in Swift?

I researched all StackOverflow about Expandable Table View, but they have posted only a show header with the cells. In fact that iOS 15 has changed the new design interfaces of the UITableView as known .insetGrouped. Basically Header in…
Antonio Adrian Chavez
  • 1,016
  • 1
  • 7
  • 12
0
votes
0 answers

ClassCastException: com.nambimobile.widgets.efab.ExpandableFabLayout cannot be cast to Activity onCreate

So I'm adding an expandable fab, but I'm having this error and I don't understand why... this is the exact error in log: ava.lang.ClassCastException: com.nambimobile.widgets.efab.ExpandableFabLayout cannot be cast to…
0
votes
1 answer

Vue data table expandable row issue

Problem: I cannot add an expandable row in my data table. It is not showing. Goal: I need to populate some data in my data table with an expandable row. What I have tried: I have followed the documentation, here is the reproducible code that you can…
0
votes
0 answers

Angular - Table with expandable row (hierarchy structure)

I have hierarchy structure data which I'm trying to show in the table. I'm using material-table expandable which works fine when I show only one level of data. I created a table that shows the main data and when I click on detail it showing another…
0
votes
2 answers

Flutter Expandable in Dropdownmenu

I am trying to do a Dropdown menu with expandable Items inside. I also got it working somehow but I am not sure if this the best way to do it. I want a similar UI to this. A dropdown menu that transforms into this. What I did looks like this until…
nani
  • 183
  • 2
  • 15
0
votes
1 answer

The argument type 'Widget Function(Categoria)' can't be assigned to the parameter type 'dynamic Function(Child)'. (Model) Flutter

I am following this example. https://esflutter.dev/docs/catalog/samples/expansion-tile-sample to make an expandable of multi levels in the categories. I have a tree of up to 3 categories. but it gives me this error: I put it in the image so it can…
Dubbain
  • 73
  • 1
  • 8
0
votes
0 answers

How to load 'expand' content only when I click in a Item

I have a flutter app which has a ExpandablePanel as the code shows: ListView( children: [ ...items.map( (item) { return ExpandableTheme( data: ExpandableThemeData( …
user14789593
0
votes
0 answers

how to make expandable layout expands in upward direction instead of default behaviour i.e expands downward?

i am new to android and i have an issue that my expandable layout is expanding in downward direction , i want to expand it upward direction as i have the layout in bottom , please help me
0
votes
1 answer

Animate multiple list items together (expanding/collapsing)

Is there a way to animate multiple listView items together as one block to make Expanding/Collapsing animation. I tried AnimatedList, but it animates items one by one, not as one group or block. ExpansionTile and ExpansionPanel won't work for me…
0
votes
1 answer

Expandable lists using XML

My current project contains a list view with the contents being a string array defined in xml. setContentView(R.layout.contacts); String[] peoples = getResources().getStringArray(R.array.contacts); setListAdapter(new ArrayAdapter(this,…
user800360
  • 29
  • 5
0
votes
1 answer

how can i set min height to my containe and after colick on button then wrapcontent height be equal of text height

I want to show more text with set animation to container in flutter.I want to set min height to my container then set animation for expand my container. like this…
0
votes
2 answers

Need to expand the expandable listview which are opened before in Parent screen when click on goback() in child screen

I have an expandable listview on the parent screen. I expanded listview to see subcategory items. Now I clicked on one subcategory, it will navigate another screen(child screen). when I click on goback() method in child screen the parent screen is…
Priyanka
  • 138
  • 2
  • 15
0
votes
1 answer

Expanding nested items FastAdapter

I cannot find a way to expand nested items using FastAdapter library. Example: Category 1   -- Subcategory 1 // Subitem of category     ++ SubSubCategory 1 // Subitem of subcategory     ++ SubSubCategory 2   -- Subcategory 2     ++ SubSubCategory…
0
votes
1 answer

How to expand textView and automatically the next fields will be moved?

I am retrieving the large content from firebase in that text view but i want to show only 3 lines and after that i want to show "readmore/showmore" option and when use clicks on that full content will show and next fields will automatically shift…
Virti Parekh
  • 45
  • 1
  • 9
0
votes
1 answer

Get full HTML for page with dynamic expanded containers with python

I am trying to pull the full HTML from ratemyprofessors.com however at the bottom of the page, there is a "Load More Ratings" button that allows you to see more comments. I am using requests.get(url) and beautifulsoup, but that only gives the first…