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
1 answer

User-inputted dynamic div height in chrome

I have found (not written) a piece of code for a resizable div that works beautifully in firefox and IE, but in Chrome it's very difficult to expand--it often just ignores you if you try to stretch it. I'm not even sure why this is--it's difficult…
Alkanshel
  • 4,198
  • 1
  • 35
  • 54
1
vote
1 answer

Modify split form datasheet view format

I have a split form with a subform. Each time the form is loaded, the subform data expands automatically. Is there a way to automatically collapse the datasheet view of the subform when the form loads?
Abbas
  • 75
  • 9
1
vote
1 answer

Straightforward example of expandable row in GWT DataGrid

I'm trying to pull out the required code from Custom DataGrid Example to achieve expandable rows as shown in said example (click on "show friends" cell) but the provided source is so bloated that it's not as easy as it seems. Does anyone have more…
Johnny
  • 154
  • 2
  • 13
1
vote
2 answers

How to display a hidden part right underneath the submit button after it's clicked?

So, I'm trying to make a hidden part visible after clicking the submit button. More specifically, this part should be a TableView that will display user selections/entries before they hit the submit button. Is there a way to do that? Please see the…
WoShiNiBaBa
  • 257
  • 5
  • 19
1
vote
1 answer

My expandable content isn't working on IE

Any ideas why this code isn't working on IE? I have tested multiple versions and as far as I can tell the :focus element should work but for some reason when I click it nothing happens. .collapse { text-align:left; } .collapse > * + *{ …
Marissa
  • 65
  • 6
1
vote
0 answers

Android expandable textview on RecyclerView

I'm use recyclerview and holder adapter. This have textview and maxlines is 4. I want to if user click then expand again click then collapse. My codes is working but i have an issue; When i click textview this going to expanded work fine but when i…
kibar
  • 822
  • 3
  • 17
  • 37
1
vote
2 answers

how can I expandable a view in swift

Im new in swift. In android, I using fragment to add or remove childview from parent view. I would like to expand an view when I switch a switch to on, and to collapse when I switch the switch to off. At the same time all the other elements I have…
Kul Ken
  • 163
  • 1
  • 2
  • 8
1
vote
2 answers

asp.net expandable image

I have an image which is too big so by default I want it to be hidden and instead, display something like a "+" sign on the page. toggle that sign will show/hide the image. Which component in asp.net can achieve this? I did not find anything in the…
Yang
  • 6,682
  • 20
  • 64
  • 96
1
vote
1 answer

angular-ui-grid: plus icon (expandable row) at left side - how to change it to right side

i am using ui-grid with the expandrow feature ( demo from ui-grid site ). because my language is RTL so the plus icon displayed at the right side i need that the position of the plus icon will be at the left side (architecture request) any idea how…
user3274100
  • 181
  • 2
  • 15
1
vote
1 answer

Why is this expandable list not showing items in correct manner in php?

I am trying to create an expandable list. It is showing correctly for 1 node in the following manner: University Department0 Course0 Student0 However, when I do the same for more than 1 items ie. when number of departments are more than 1.…
Nevermore
  • 882
  • 2
  • 18
  • 44
1
vote
1 answer

How to create Expandable listview with dynamic multiple child view in android

I want to create Expandable list view with dynamic child view. Child View has different view. I follow many url but nothing fits on my requirement. Please help me.
user3273769
  • 33
  • 1
  • 1
  • 7
1
vote
1 answer

Expandable CardView

I have CardViews which contain TextViews with large amount of Text and I want to make them expandable so that the content is just shown, when its needed. For example: Variety 1 Variety 2 Any advise?
Ronaldo
  • 774
  • 3
  • 8
  • 29
1
vote
1 answer

how to use external font in expandable listview?? (Android Studio)

hi i'm trying to change the font of the parent text (the subjects) in my expandable list view by using an external font. i've already placed my font in assets>fonts. context is red in my code here subjects_adapter.java public View…
litthether
  • 25
  • 7
1
vote
1 answer

Android Expandable lists having multiple child items in a single row and their onClick event

I could not figure out how to implement two basic functionalities with the expandable lists: 1. The onClick for the child 2. Using linear layout for the children, so that I can have multiple clickable items in same row under the parent item Can…
user395482
  • 11
  • 2
  • 4
1
vote
3 answers

Expandable RecyclerView with Grid Layout Manager as child

I want to have a RecyclerView which is foldable like expandable ListView and the children of each paren will present a GridView layout manager. Is it possible? Can anyone direct me on how to do that? Thanks