Questions tagged [tabular]

Tabular indicates a display format that mimics a table entity.

A tabular format is something which mimics the appearance of a table entity.
All the data are shown in rows each of which is made of columns (or fields).

1367 questions
-1
votes
2 answers

Tabular Form for Insertion ASP.net

I want to create a tabular form in Asp.net for multiple insertions at a time. Can anyone help?
classic classic
  • 53
  • 1
  • 2
  • 7
-1
votes
3 answers

Best/most functional way to create this?

--Note: I am still pretty new to CSS and html)-- Trying to practice my coding (CSS, HTML) further, I decided to make a little thing for myself. Part of the screen(html page) will be filled with little blocks like below. These are all the same sizes,…
PSZ_Code
  • 1,015
  • 10
  • 29
-1
votes
2 answers

How to get image to move to next cell

I am trying to make a maze, and I am using a table. I want it to be controlled with keyboard controls (left=move to next cell, down=move to next row, etc...). Is that possible with query? It has to be moved to a specific cell in the table.
Thomas Lai
  • 317
  • 1
  • 6
  • 15
-1
votes
2 answers

Tabular data markup should be tables or divs

I have a data like the image here. I need expert advice in which way I should do HTML or Divs. If I go for Div's can we achieve a effect which tables gives by default I mean if a column width increases the whole column width increases same like…
-1
votes
1 answer

Read and use data in a table

I want to read the content of an ASCII table, and do some calculations with the elements in different columns of the table. How do I do that? As an example, the table has 1000 rows, each one with X and Y. What should I do to get X-Y for each…
-1
votes
5 answers

Generate a table with random elements

I am new with Ada programming. I am trying to generate a 80 column and 40 rows table, each case is randomly filled with either M or V. Any help with how to create this kind of table would be much appreciated ! Here's what I have so far for the table…
user1816067
  • 23
  • 1
  • 5
-1
votes
2 answers

Formatting output as table

Example input: [('b', 'c', 4), ('l', 'r', 5), ('i', 'a', 6), ('c', 't', 7), ('a', '$', 8), ('n', '$', 9)] [0] contains the vertical heading, [1] contains the horizontal heading. Example output: c r a t $ $ b 4 l 5 i 6 c 7 a …
A T
  • 13,008
  • 21
  • 97
  • 158
-2
votes
1 answer

Is there a model to allow Django to insert or append records in the TabularInline style to the main table?

Following the style of the Django tutorial I want to add records in the TabularInline style on the main table, not in the master/detail style used in the tutorial. The ideal approach would be to have a list_display and specify how many empty rows…
vfclists
  • 19,193
  • 21
  • 73
  • 92
-2
votes
2 answers

Table using nested loop, calculations not coming out correctly / completely

This has stumped me for several hours, and I am so close to the end, and I've tried several different variations, and it comes out in weird ways. I have also found different times this problem has been asked, but none of them seem to be having the…
html92
  • 65
  • 9
-2
votes
1 answer

Align irregular list of lists by similarity Python

I have a list of list containing the start position of each column in an OCR´d tabular table. [[16, 102, 119, 136], [16, 48, 76, 109, 145], [16, 47, 75, 108, 128, 145], [16, 48, 77, 110, 141], [98, 135]] The initial idea is to use the longest…
-2
votes
1 answer

Move every 2nd and 3rd row to the end of the 1st row

I'm not really sure how to explain this one but I have a spreadsheet that i pulled into python with no headers, and the data pertaining to each unique id is grouped into rows of three so the columns at this point don't really mean anything when read…
raleta2
  • 13
  • 2
-2
votes
1 answer

Extract clear data in json from table in a pdf

I have the following PDF file from which I want to get the the data inside it so as i can integrate with my app. Example i want to get 1 for Monday and 10 and 14 for the columns having white boxes Here is what I have tried: import tabula df =…
b.john
  • 773
  • 1
  • 6
  • 9
-2
votes
1 answer

Just stuck in this code, I have to create a math table

I have this code which is giving me error, I have no idea how to fix it. I don't know which part I'm doing wrong. I have made a code like this but with out giving user a option, for example: int counter; for (counter=1; counter<=100000;…
ZealFied
  • 13
  • 1
-2
votes
1 answer

Retrieve a list of files stored in a folder into my solution ASP.NET

I am not sure if I am in the right place to ask this, I am trying to create a table with all the PDF files that I have in a folder into my solution. And I am trying to retrieve their names and put them in a table to access all of them throughout a…
-2
votes
3 answers

How to print this table in combined form C++?

I need to print this table 2 0 4 2 3 3 6 4 2 6 6 6 8 6 4 2 9 9 9 9 I have written this code for the following result #include using namespace std; int main(){ const int N = 9; for(int i = 0; i <= N; i += 3){ for…