Questions tagged [dynamic-tables]

258 questions
2
votes
1 answer

How can fetch multiple table dynamically with table category (Header) and table content using asp.net c# webforms

I am trying to fetch table category and based on that table category the multiple details of that category will have to automatically fetch under this following category but unfortunately multiple table is created under this single category. First…
2
votes
1 answer

Save dynamic result from stored procedure into a dynamic table

I am facing some issues in saving the execution of stored procedure / scalar function into a table variable. The function / stored procedure returns dynamic columns and I need to create a dynamic table to save the result of that function into it so…
Sami
  • 21
  • 1
2
votes
0 answers

How to create CTABLES like SPSS in R?

Report Screenshot I'm converting a report in SPSS to R. In the final step I need to create a table which looks like this: I have tried using expss package and I can get table output but I'm not able to create variables having variables inside them…
Rohan Jain
  • 25
  • 6
2
votes
3 answers

How to build dynamic table using JQuery?

I would like to build dynamic table using JQuery and then append the table to DOM. Usually I used string concatenation method to build the table. This time I would like to do this with JQuery. One thing that I'm struggling to get is opening/closing…
espresso_coffee
  • 5,980
  • 11
  • 83
  • 193
2
votes
0 answers

How to get the total of the row using ReactJS?

I have a dynamic table as you see on the figure below : I try to display the value of "Grand total", but it's still always 0. This is the sum of total for each row. My code is below : class AjouterFacture extends Component { constructor(props)…
Ichrak Mansour
  • 1,850
  • 11
  • 34
  • 61
2
votes
0 answers

update dynamic tablelayout in scrollview using a button

I have created dynamically a LinearLayout and inside a HorizontalScrollView and I have placed insite a TableLayout (my table is too big an I need to scroll). When first created my table has a row as a header and a row for the user to input data.…
2
votes
2 answers

Javascript function call from HTML Table Cells

I have created one dynamic HTML table.We can add and delete rows for that table. I have tried to call one javascript function from cells but that call is not happening.How can i call method from my addrow method addRow() function code given below …
NIKHIL K A
  • 328
  • 5
  • 16
2
votes
1 answer

Dynamic table name & LOAD DATA INFILE

Is it possible to LOAD DATA INFILE within a table name set in a user variable ? Here is the script that doesn't work: INSERT INTO Demand (name, comment, scale) VALUES (A,A,1); SET @Demand_id = LAST_INSERT_ID(); INSERT INTO Matrices (name,…
Touki
  • 833
  • 2
  • 9
  • 20
2
votes
1 answer

How to retrieve field names in jaydata

I have a simple database in Jaydata: $data.Entity.extend("Person", { Name: { type: String, required: true}, LastName: {type: String, required: true}, DepartmentId: {type: int} }); $data.EntityContext.extend("PersonDatabase", { People : { type :…
2
votes
2 answers

How to display multiple nested/dynamic tables

I'm working with asp.net and would like to dynamically generate multiple tables, and then display each table on the webpage. So In the Environments.aspx.cs file: Query the database to obtain the data and discover how many tables should be…
Wario X
  • 203
  • 3
  • 10
2
votes
3 answers

HTML Table Append, JQuery Array

I have a dynamic table on my page that a user can add rows/delete rows from. So let's say the user adds 6 people. The first name array would look like this: Index: 0 1 2 3 4 5 Person#: 1 2 3 4 5 6 Then let's say the user…
Charlie Yabben
  • 307
  • 2
  • 7
  • 13
2
votes
2 answers

Create dynamic tables in android. New view vs inflater

I would like to create dynamic table in android (custom number of rows and columns). Minimum sdk is 3.0 I suppose to crate it via one of 2 ways: 1) via creating new TextView TableRow tr = ....; for ( i = 0; i < NumOfRows .... ) { TextView tv =…
davs
  • 9,226
  • 8
  • 41
  • 54
2
votes
1 answer

Dynamic generation of report using RML in OpenERP

How to generate dynamic columns using RML report?
Abhishek Mehta
  • 173
  • 1
  • 13
1
vote
1 answer

dynamic table in angular materials

I'm encountering an issue while working with Angular and Angular Material. After fetching data from an API and displaying it in an Angular Materials table, I'm trying to add an extra column with edit and delete buttons. However, I'm running into an…
1
vote
1 answer

Issues with Selenium/Python in Scraping Data from Dynamic Table: Staleness Exception with Expected Conditions And Performance Decrease

I'm a beginner and have a lot to learn, so please be patient with me. Using Python and Selenium, I'm trying to scrap table data from a website while navigating through different pages. As I navigate through different pages, the table shows the…
1
2
3
17 18