Questions tagged [expandable-table]

Expandable table is a UI widget that his goal is to show extra secondary data in tables.

This widget uses in any platform of UI.

Example use in web technology:

Expandable table

http://www.jankoatwarpspeed.com/wp-content/uploads/examples/expandable-rows/

42 questions
1
vote
0 answers

Expandable recycler view always collapse on updating adapter

I am using recycler view(https://github.com/thoughtbot/expandable-recycler-view) to display list of sections and subsections. It is working just fine. But when I am trying to update the list with live data and using :- recyclerView.adapter = adapter…
1
vote
1 answer

Expandable row for dynamic table

In my Reactjs Application I am having a table. I am using javascript's map function to fill the rows. That means my rows are rendered dynamically. This how I do it { this.state.MediaFiles.map((item, i) => (
EdG
  • 2,243
  • 6
  • 48
  • 103
1
vote
0 answers

How to create expandable tableView while using FolioReaderKit?

I'm using FolioReaderKit for one my book app and I want to create 3 level expandable tableView. Does anyone have any idea how can i do it?
pravin nagargoje
  • 70
  • 1
  • 1
  • 9
1
vote
1 answer

Populating a table in meteor with items from collection

I already have some html code for an expandable/collapsible table that I am trying to put into a meteor application. code here My main problem that I am having is that when I am populating the table in the meteor application, it is not creating a…
E. Pace
  • 75
  • 1
  • 7
1
vote
0 answers

How to do Collapsible and Expandable TableviewCell in storyboard

In Swift, how to do collapsible and expandable TableviewCell in storyboard using Disclosure Indicator as Accessory? I have come across some documents and cocoapods library where I can collapse and expand cell using xib files. But I wanted to do…
1
vote
0 answers

How to implement expandable table by using custom cell whole process?

I want to implement expandable table when user click on button automatically open the another table in same view. This is my .m file strong text #import "MenuVc.h" #import "Reachability.h" #import "YRDropdownView.h" #import…
0
votes
0 answers

Antd expandable table, expand child component on click

I'm using an expandable table from antd design v4.10 in my react app. When I click on the + button table row expands but one of the child components needs to have a + button (in my case doc.students) which should expand and show its own data. const…
Sac
  • 35
  • 9
0
votes
1 answer

How to call a component inside a expandable row in Angular 12

I have a set of data that I need to show in the table and for the same data, I want to show graph representation for that when the user expands the row. What I have achieved yet is an expandable row in the table with some data. My code is as…
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
1 answer

UITableView : Nested Section Swift 5

I am trying to implement a UITableView with the following structure : struct DataArray { var mainsection : String var titlecontent : String var contentsection : [(question : String, answer : String)] = [(String, String)]() } var…
varsha94
  • 249
  • 1
  • 6
  • 22
0
votes
0 answers

How to create expandable table in react?

I have been trying for a while to create a table with expandable rows. And in the expandable row, i wanted to display a table with header and row data. I tried different modules like Material-UI Table and material-table. I can display a card for…
oly
  • 33
  • 7
0
votes
1 answer

React.js: table inside expandable rows

I have an antd expandable rows table with vehicles. I want to display in the expanded row all the bookings of the specific vehicle. This is the vehicles table with its datasource: const vehiclesData = ( props.vehicles.map(vehicle =>{ …
thelaw
  • 385
  • 5
  • 12
0
votes
1 answer

I am Trying to Create an Expandable Table View With Child Element Having a UICollection View

I am Trying to Create a Table View which is Expandable It's Childview has a UICollectionView UICollectionView is Dynamically rendered using API onTouch Event of UICollectionView Item should be taken care of Tried couple of samples didn't…
0
votes
1 answer

Is it possible to create expandable UI-grid with custom template as Ul li display

Hi I need to have a expandable ui-gird, while expanding a row need to show the detail view of the selected row in Ul li. I check in official site, but doesn't found anything, is it possible in ui-grid ? Thanks
Sridhar
  • 73
  • 1
  • 11
0
votes
1 answer

showing the Rows when a Section header is selected

I have a view controller which contain a table view. I want to add the ability to show the ROW whenever the section header is pressed, and vice-versa(expandable table view). the code below shows the code that I have written for my table view: func…
jack
  • 77
  • 2
  • 8