Questions tagged [dynamic-tables]
258 questions
14
votes
2 answers
React.js creating a table with a dynamic amount of rows with an editable column
I am trying to create a react.js table that syncs with a leaflet map. I have this data and I am able to get the data properly, but I cannot create a table correctly. I am able to see the headers because they are hardcoded, but I am not able to see…

napkinsterror
- 1,915
- 4
- 18
- 27
7
votes
2 answers
JQuery Datatables row height
I have a page where people can enter in first/last name, phone, email, and ethnicity click add and it adds an entry into the datatables. The problem is after clicking add the table shows up like this:
How do I adjust the height of each row so that…

Richard
- 5,840
- 36
- 123
- 208
6
votes
2 answers
Creating a dynamic table with PHP
I'm trying to make a dynamic table with PHP. I have a page which displays all the pictures from a database.
I need the table to be of 5 columns only. If more than 5 pictures are returned, it should create a new row and the displaying of the rest of…

maxxon15
- 1,559
- 4
- 22
- 35
5
votes
2 answers
DynamicTableEntity PartitionKey and RowKey
I create DynamicTableEntity as follows:
string env = "envTest";
stting ver = "1.0";
siring id = "12356";
string mode = "verify";
DynamicTableEntity entryEntity = DynamicTableEntity(env,ver);
entryEntity.Properties.Add("Id",…

YAKOVM
- 9,805
- 31
- 116
- 217
4
votes
2 answers
Binding Click events for Dynamically added Table Rows in Javascript/jQuery
Problem Statement:
I have a table with thead created statically, and 'tr/td' inside the tbody created dynamically. What I have to achieve is that when the user clicks anywhere on the table, I need to get the val() of the first column of the row…

wierdmaster
- 51
- 1
- 1
- 3
4
votes
1 answer
Dynamic tables with Mustache using dynamic arrays
I am wondering if there is a more graceful solution to my current solution for the following problem
Problem: Generate dynamic tables from a dynamic array with Mustache given that:
Total column count is unknown
Only one or two column names are…

Michael M
- 8,185
- 2
- 35
- 51
4
votes
1 answer
JQuery Delete Row on dynamic tables
I'm creating a registration page where the user can register several other people. I've made it so that the table only shows if the user selects a certain option. I've also added the add button and that adds rows perfectly fine. The problem is when…

Timothy
- 33
- 1
- 5
3
votes
1 answer
Dynamic html Table from an array values using javascript in Code.gs
I am a total novice to javascript, but i am willing to learn this somehow.
As you can see in the attached picture, I have managed to get some data extracted from a google sheet in to an array.
I am struggling to this array data into an html…

Azim Majeed
- 31
- 2
3
votes
3 answers
How to create a very dynamic LinqToEntity query?
I need to build a very dynamic Linq query over a varying number of tables.
For example, I have the related tables:
Table_A
- ID
- Name
- Desc
Table_B
- ID
- Table_A_ID
- Name
- Desc
Table_C
- ID
- Table_B_ID
- Name
- Desc
I have a…

cew3
- 41
- 1
- 4
3
votes
4 answers
Best practice using CSS & JQuery on dynamically created tables
I have a page that takes information from MySQL database and using PHP generates HTML.
Since this is only a test run, I began to wonder about using the ID's like this, because the final page would be using upwards of 400 different #td[i]'s and…

Zimpari
- 45
- 9
3
votes
1 answer
Create dynamic table to add new entry with button
I am trying to build a register, so that when a button is clicked, a new entry appears on a table. Ideally, I am looking to build a table on the left side of the screen, with two rows and new column appears when the button is clicked. I want the…

Mayankmmmx
- 115
- 1
- 2
- 13
3
votes
1 answer
Unexpected behaviour of dynamic html rendering a table with data via C#
I'm encountering an unfamiliar problem with functionality. I think it has something to do with scope of a loop, and server-side code operations/manipulation when rendering a page.
Say I want to repeat a Table Row - each hosts a text input, rows…

LoneXcoder
- 2,121
- 6
- 38
- 76
3
votes
1 answer
JQuery Dynamic tables
I've been trying to add dynamic tables to my registration page for a full day now and I am literally at the place where I started. I need to create a table where the user can edit, delete, and add new users. I've tried using datatables plugin and…

Richard
- 5,840
- 36
- 123
- 208
3
votes
1 answer
Runtime of a dynamic array that increase by a constant instead of doubling
I just finished an exam, and one of the question was in summary:
Given an empty array of size 1000, what is the amortized cost of inserting n elements into the array? When the array is full, instead of doubling the array, we increase it by 1000 and…

user1320353
- 33
- 4
2
votes
1 answer
ReactJS multi-input form to dynamic table
I'm trying to make a little D&D initiative tracker. I'm trying to modify a form to take multiple inputs and generate a dynamic table.
My current issue is that when I submit the form, a 4x4 table is created with each input displaying across each…

Alex
- 37
- 8