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
2
votes
0 answers

LinqKit and Filter a subquery

I have a One To many relation (EF) and i want to write a query that filters the One relation AND filters the Many Relation. For instance: Company has Many Employees Write a query that filters on Company.Name = "ZonSoft" and where Company.Employees…
2
votes
1 answer

Flutter - The Expand Icon is not working properly

I'm creating expandable data. I tried with the Expand icon widget. But the expand icon is not working properly. The button state is not changing. Code: bool _isExpanded = true; Container( color: const Color(0xffeaeaea), …
Divya
  • 129
  • 8
2
votes
2 answers

How To Use SetState In ExpandablePanel in flutter

in ExpandedPanel I put two buttons when press on the first change container contant, but setState() doesn't work to change the value of Scaffold_Syllabus* with the value of Table_Lecture***_Scaffold** the code class Syllabus extends StatefulWidget…
2
votes
0 answers

Android ExpandableListActivity Change View at runtime

I am using ExpandableListActivity i am using SimpleExpandableListAdapter(Context context, List> groupData, int groupLayout, String[] groupFrom, int[] groupTo, List>> childData, int…
Mahaveer Muttha
  • 1,727
  • 4
  • 21
  • 33
2
votes
1 answer

Standard z-index for expandale banners.

Is there a standard or de-facto standard for the z-index on expandable banner ads when they are in their expanded state? I am building an expandable banner and I will have no control over where it will be placed, so I need to know what I should set…
DanielM
  • 121
  • 1
  • 5
2
votes
1 answer

How to move expandableRows icon to the right side of the data grid, in react-data-table-component

As of now the prop expandableRows puts the icon in the left side, however I need to see the icon in right most of the table. Is there any way to do this? How to move expandableRows icon to the right side of the row, in react-data-table-component. As…
2
votes
1 answer

How to change the Icon of an ExpandablePanel onExpansion in Flutter

I have an ExpandablePanel with an arrow down icon in the header, when you click on it the body of the ExpandablePanel expands, I would like that when I click on it this Icon also change to an arrow up, and when I click on it again, get back to an…
JS1
  • 631
  • 2
  • 7
  • 23
2
votes
3 answers

How do I pass a RegEx token to a PowerShell subexpression in a RegEx substitution?

I have the following code:- '\u0026' -replace '(\u)(\d{4})', '$$([char]0x$2)' That will obviously result with:- $([char]0x0026) If I make the RegEx substitution into an expandable string with:- '\u0026' -replace '(\\u)(\d{4})',…
sulligogs
  • 23
  • 3
2
votes
0 answers

How to code an expandable pane/panel/card

I added an image below to show what i am trying to achieve. I've seen similar implementations of this else where but isn't sure what it's called. What it will do is when a box/panel/card on the left is clicked, a detailed panel on the right will be…
Cherple
  • 725
  • 3
  • 10
  • 24
2
votes
1 answer

Expandable List using Python Tkinter

I know how to create a Listbox using Tkinter but this only allows me to display a list of single items. I need to create a expandable list that allows the user to hit something along the lines of a + next to the item which in turn opens up a new…
devonbleibtrey
  • 1,567
  • 16
  • 22
2
votes
4 answers

TextBox Auto Expandable in ASP.NET

I have a TextBox like this; Is there any way makingAuto Expandable without Javascript or any other technology? Can i do that just with ASP.NET ? (Some properties maybe) OR what is…
Soner Gönül
  • 97,193
  • 102
  • 206
  • 364
2
votes
1 answer

How to make an expandable table view cell?

I would like a table view cell which when you tap it grows in height to reveal some description text. When you tap it again it toggles back to the less tall version. Is this possible, and if so how would I accomplish it? Thanks in advance
Tom H
  • 1,316
  • 14
  • 26
2
votes
1 answer

Problem with expandable list adapter

I am new to Android development, so I hope someone can help me with this problem. I am trying to create a expandable list, I have tried googling, and read through googles documentation. But somehow I can not wrap my head around it. My code gives no…
AppDeveloper122
  • 143
  • 2
  • 3
  • 16
2
votes
3 answers

expandable CSS search field

I've got an CSS expandable search field operating, but what I want is for the search items to go over the preceding two icons, not push them to the left. I though I could accomplish this by applying a higher z-index value to the search form and a…
soire
  • 21
  • 1
2
votes
0 answers

Treeview nodes shows plus sign even though it doesn't have children

My Treeview shows the plus sign on all nodes, by default. Even those nodes without children, which is wrong. However, once I've tried to expand that node, the plus sign disappears. I populate the Treeview dynamically. Here's some code: protected…
user494491
  • 21
  • 4
1 2
3
20 21