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
1
vote
0 answers

Flutter Expandable leaves empty area after being collapsed

I have a long text in a CustomScrollView that I have wrapped in an Expandable widget. When the text is collapsed I show the first 7 rows, and when it's expanded I show the entire text which can be long. After I expand the text and then collapse it…
Joel Broström
  • 3,530
  • 1
  • 34
  • 61
1
vote
0 answers

How to select a subgrid row in an expandable ui grid?

I'm implementing an expandable ui grid. When a parent row is expanded, I want a row in the subgrid to be automatically selected based on the parent row's data. How do I get a list of subgrid rows? Is there a way to find and select them with…
1
vote
1 answer

SwiftUI Expandable List with Different Properties

so I have been trying to create an expandable list to present different types of information. I have a generic struct as such for all the different instances: struct Password: Identifiable { var id = UUID() var password: String? var…
1
vote
0 answers

mkdocs expandable content loads separate md document

Is it possible to have an expanded section of a doc load the contents of another md document? The expandable content could be used in other documents, so instead of getting into version hell, I'd like to create one md doc that I can reference. Right…
1
vote
1 answer

How can I change the header when the ExpandablePanel is opened

I want to change the header part when the ExpandablePanel is opened. When I close it, the old header should come again. How can I do this in Flutter? true false values are true but text is not updated return ExpandableNotifier( …
Gülsen Keskin
  • 657
  • 7
  • 23
1
vote
0 answers

How to display two different values for every row on antd table expanadble when dataSource is a state?

For my antd table expandable, I want to calculate a set of values based on the row of the table. So every row that expands contains unique value, and say my hooks state contains the set of cities out of which for each individual row, there needs to…
Kashyap
  • 85
  • 2
  • 9
1
vote
2 answers

How to implement expandable panels in Flutter?

Is there an easy way to create expandable/collapsible ? Screenshot when you click on "Show More Detail" button, the description section expands with animation:
Andrewlee1228
  • 23
  • 1
  • 3
1
vote
1 answer

Alignment of Collapsible div's in an HTML page

I'm hoping someone can help me with collapsible div tags. What I want to do is to create a list with multiple collapsible 2-column sections. The sections are designed with div tags and embedded into a list. My code so far works in IE, but not in…
Paulo Mendes
  • 697
  • 5
  • 16
1
vote
1 answer

Android custom expandable/collapsable view with child elements

I am working on a custom expandable view in android. The goal is that I can add child elements in the xml files and they will be expanded and collapsed when the user clicks the expand/collapse button as on the picture below. The…
dagoston93
  • 57
  • 8
1
vote
0 answers

Nested RecyclerView expand/collapse function is not responding

I have 2 RecyclerView (Vertical) one inside the other. Outer RecyclerView is having a List of Child and within this Inner, RecyclerView is having list of devices available to the specific child. The inner RecyclerView is having a condition that it…
1
vote
1 answer

ScrollView to show layout if expandable layout goes outside the screen

I have several expandable layouts in my Android App. When I click to expand a layout, the layout disapear outside the screen, and I have to manual scroll down to make it visible. How can I make the ScrollView automatically scroll down to make the…
1
vote
0 answers

Expanded nodes overlapping on the existing nodes in d3 v4 force directed graph

I'm working on a simple expandable force directed graph. It seems to work for the most part except that new nodes are being drawn on the existing nodes. On the node double click event, I'm trying to add new nodes and redrawing the entire graph. The…
user3023949
  • 121
  • 2
  • 8
1
vote
0 answers

Expandable tableView cells font

I am trying to make the title and the sectionData different sized, I would like title bold at least. I have been trying to find a solution but haven't found anything. Any help is greatly appreciated. I have tried to use an using a function which…
1
vote
0 answers

How can I get the height of auto-grown text box before Print event in an MS Access 2016 Report?

I want to get the final height of a multi-line text box in an Access report so that I can align vertically smaller, one-line boxes, to that expanded one. So that they end up looking like this: It seems the only way to know the expanded size is in…
Aris
  • 157
  • 1
  • 10
1
vote
1 answer

How to create read more expandable border when overflow exists

I have a container that contains some text. The container is restricted to being half the size of screen. Sometimes there's a lot of and this causes the text to overflow. In the case of an overflow, I'd like the container to be expandable. What is…
Black
  • 4,483
  • 8
  • 38
  • 55