Questions tagged [dynamic-tables]

258 questions
1
vote
1 answer

Stop Dynamic Table Reloading IndexPath - Swift

I have a dynamic tableView as below, which shows names of an array according to indexpath.row. And in each cell I have a button that changes the name which is as a deletage to the cell as in the code below. When I load the table assume the rows load…
saner
  • 821
  • 2
  • 10
  • 32
1
vote
2 answers

Get total value of a particular column in multiple row table

I created a table where I can dynamically add multiple rows to it. There's a column to add cost. Now I want to get total cost value of each row at the bottom of the table. How can I get this using JavaScript? Here is my html code for dynamic…
Erandi
  • 23
  • 1
  • 7
1
vote
1 answer

Get Total on SQL Dynamic (Calendar) Pivot Tables

I am trying to get an SQL Server Dynamic Pivot table to work that allows me to count and then sum the number of columns. The purpose of the pivot table is to create a report of all the days individuals were staying in a city and the total number of…
1
vote
2 answers

std::bad_alloc at memory location (probably sth with creating dynamic tables)

I've got problem creating a dynamic table in c++. My program breaks and shouts: Unhandled exception at at 0x75914598 in xxx.exe: Microsoft C++ exception: std::bad_alloc at memory location 0x0107F73C. I know there is something I'm missing so if…
engray
  • 91
  • 1
  • 12
1
vote
0 answers

Isolating data from dynamic table with beautifulSoup

I'm trying to extract data from a table(1), which has a couple filter options. I'm using BeautifulSoup and got to this page with Requests. An extract of code: from bs4 import BeautifulSoup tt = Contact_page.content # webpage with table soup =…
CTVDevine
  • 43
  • 8
1
vote
1 answer

Get all rows from a dynamic table using Selenium WebDriver

I am working on automating a webpage editing task. The webpage has a dynamic table inside a frame. Each row has five columns. By dynamic table I mean that the rows are loaded dynamically on the web page. At any given point, the number of rows loaded…
1
vote
1 answer

Printing Horizontal Tables Including Images Using PHP MySQL

I am trying to print out on my sites home page a horizontal table which includes a picture of a car and then below the make, model & price of the car. Here's roughly what I have done:
1
vote
1 answer

Conditional Formatting (cell value equal to) applies to dynamic table

In Excel Conditional Formatting, I can use Indirect("table1") (structured referencing) in the Rule (on the left) but not in the Applies to (on the right) where Excel auto-corrects "table1" (relative reference range, structured referencing) to an…
Tin Amaranth
  • 683
  • 2
  • 12
  • 23
1
vote
1 answer

how to store data from dynamically created table to mysql

I went through almost all of the previous topics in the site and saw may options on how to add a value from a cell to a mysql using cell name & array variable. But I couldn't find anything similar to the innerhtml method that i use to create table…
1
vote
1 answer

Is it possible to change the dynamic table layout in Dreamweavers dynamic table wizard?

when I use Dreamweaver dynamic table option the tables print out like this:
ID PRODUCT PRODUCT STOCK
Edgar Mtz
  • 63
  • 1
  • 1
  • 5
1
vote
1 answer

How to edit the td value when double click on it

I want to edit the td value of particular id when i double click on it. I wrote the logic. In below code 'get()' function will return 10 status which is assigned to a table td. If i double click on the any status I need feature of in-place editing…
user3614760
  • 9
  • 2
  • 7
1
vote
3 answers

Populate a dynamic Table from two arrays

The first array contains the headers and the other array contains the data to be populated. I am able to create the headers but I am having issues populating the data according to the headers. $columns =([0]=>firstname, [1]=>lastname,…
Kevin Kaburu
  • 504
  • 4
  • 19
1
vote
0 answers

Procedure fails if second call creates other columns

Fellow residents of the Stack Exchange, I am currently trying to create a procedure that will reformat data in a very major way. I get a list of data on tickets (summary for random months). The input views always have the same columns, but since I…
1
vote
1 answer

Unable to start activity ComponentInfo about programmatically add row

I have a problem. I don't figure out that. I want to add dynamic row to tableLayout. My main acivity class : public class DutyRoster extends Activity { /** Called when the activity is first created. */ ArrayList updateList = new…
symktn
  • 13
  • 2
1
vote
0 answers

Getting value from dynamic table in Android

This is my code for creating a table and appending data dynamically: table = (TableLayout)findViewById(R.id.table); inflater = getLayoutInflater(); for(int i = 0; i < 5; i++) { row = (TableRow)inflater.inflate(R.layout.row,table,…
Abdul Naseer
  • 43
  • 1
  • 7