Questions tagged [dynamic-tables]

258 questions
1
vote
2 answers

Dynamic tables in snowflake

I followed the below link to understand the concept of dynamic tables https://www.snowflake.com/blog/dynamic-tables-delivering-declarative-streaming-data-pipelines/ I got a question while going through the link. I understood that even if it is…
Rajib Deb
  • 1,496
  • 11
  • 30
1
vote
1 answer

Selenium : Dynamic Table

driver.get("https://www.leafground.com/dynamicgrid.xhtml"); //count column List column = driver.findElements(By.tagName("th")); System.out.println(column.size()); //row List row =…
1
vote
0 answers

How to create scrolling tablelayout with not scrolling indexes and headers?

I'm trying to create a table that it values can scroll but header row and indexes column should not be scrolled. the table values are created dynamic and I'm generating rows programmatically. I tried to use separate tables for values, header and…
1
vote
1 answer

How to create dynamic table heading in R Markdown

I would like to create a dynamic table heading, which updates based on the number of regression coefficients (k,a,b,c,d,..,n,n+1) and regression equations(U4ST,U4STAW,...n,n+1). Is it possible to use the "Y" and "X" variables provided in the Code…
cn838
  • 69
  • 8
1
vote
1 answer

jquery datatable not applying width to the tables

I have a JSON and I am loading JSON data in dataTable inside the bootstrap tabs. I have set a common width (i.e column 1 width=20% and column 2 width=80%) for all the tables but it is applying for the first table inside the first tab. Datatable…
Jagadheesh
  • 49
  • 6
1
vote
1 answer

Is there a way we can insert a Map onto the Cassandra Table using QueryBuilder for a dynamic table(Table with no model class)

public int save(String tableName, Map dataMap) throws IllegalAccessException { SimpleStatement saveStatement = QueryBuilder.insertInto(tableName).values() return 1; } I have tried other inbuilt methods of…
Narupo
  • 39
  • 8
1
vote
1 answer

How to create a dynamic, custom React Table Component with action and status buttons

I am creating an admin panel which is a big project & contains a lot of tables. after creating few tables I have noticed that I am repeating my table code & then I thought of creating my custom table component. as you read my question title I Don't…
Rahul More
  • 514
  • 6
  • 10
1
vote
2 answers

PL/SQL create view base on dynamic table name

I'm trying to create a view that access all the tables starting with the same name, they have the exactly same structure, and in time there will be more. Table Names: TEMP_ENTITIES_1000 TEMP_ENTITIES_1001 TEMP_ENTITIES_1002 and in the future there…
1
vote
1 answer

React.js Creating a Dynamic table with Dynamic Columns and Dynamic Rows

Im fairly new to React and I have a react function component called DynamicTable. I am passing some json data from an api that looks like this: const tableData2 = [ …
qfjr
  • 53
  • 2
  • 6
1
vote
2 answers

How to create dynamic table in mySql

I want to know how to create dynamic table in mySql . I have used dynamic table in Sqlserver 2008 but i am new to mySql . Is it possible ? Eg: In Sql server i have created Dynamic Customer Table. DECLARE @tblCustomer as table( [ ] bit …
Vyasdev Meledath
  • 8,926
  • 20
  • 48
  • 68
1
vote
1 answer

dynamic bootstrap table export to json (with input/select)

i have a dynamic table that i need to export to json. check jsfiddle
# Product
R_life_R
  • 786
  • 6
  • 26
1
vote
1 answer

Prevent first row (dynamic table) from being deleted jquery

i have this table that enables me to delete / add rows: $(document).ready(function(){ var i=1; $("#add_row").click(function(){b=i-1; $('#addr'+i).html($('#addr'+b).html()).find('td:first-child').html(i+1); …
R_life_R
  • 786
  • 6
  • 26
1
vote
2 answers

Table in Android what am I doing wrong?

I don't get any error, but its not showing anything in the simulator. I want a dynamic table... Content of the xml file:
Mark
  • 369
  • 3
  • 5
  • 11
1
vote
1 answer

Using Selenium and BeautifulSoup Specific table is not returning by providing table ID Python3.7 ( returns Empty Array)

I am trying to fetch a specific table from a webpage using BeautifulSoup4 and Selenium the table is present there but it is not fetching using this code. I tried this from bs4 import BeautifulSoup from selenium import webdriver import time driver…
1
vote
0 answers

Having the same value of Price and Total column using ReactJS

I want after I select the product name, The price will be displayed and when I put the quantity The total column will be displayed also. My issue is when I select the product name, the same value of the price will be displayed for others row and…
Melissa
  • 135
  • 1
  • 8
1 2
3
17 18