Questions tagged [dynamic-tables]

258 questions
0
votes
2 answers

Excel formula to calculate MIN in table filtered

I have a Table that can be filtered by 1 column values, and want to create a cell that calculates the MIN when filter is applied. Nº cell A B 2 car 2 3 Moto 30 4 Moto 20 5 car 30 6 Moto 4 7 car 10 So I can calcualte min with…
SERGIO
  • 92
  • 6
0
votes
1 answer

Table component not displaying a field in an object angular

I'm trying to use the p-table component from primeng however I cannot display student first name and last name because its an object in headArray, what would be the recommended way around this? My "Student" model id: number; name: Name; and name…
Ziyaad
  • 23
  • 1
  • 4
0
votes
1 answer

Dynamic tables in Entity Framework

The table has to be created dynamically. The table name is dynamic (is sent to API) and columns are static. Every time api is called, a new table is been created with different name. Is it possible to do that in Entity Framework? If so - how? DB is…
Zinger
  • 9
  • 2
0
votes
0 answers

Postgresql function return table? with different number of columns each time

I have a table called all_checks(code integer,sql_state text) that have some checks on my db. My table all_checks is like: code sql_state 100 select kind,discs,bands from music where kind='rock' 200 select name,surname,type,period from…
mikasa
  • 170
  • 10
0
votes
1 answer

How to dynamically Change Column name(column header) with filter in Qlik Sense

I have a Filter in my dashboard as Financial Year. In that filter there are currently two years. 2021 and 2022 however as data is loaded there will be 2023 also so I want column name RANK to change dynamically to the year I select from filter pane.…
aarav
  • 5
  • 2
0
votes
0 answers

JavaScript clone row multi input [] request.getParameterValues() data not coming

When I clone the rows of a dynamic html table with Javascript and try to fetch the data in each row in the Java Spring MVC Controller, the data does not come. My jsp and Javascript code :