Questions tagged [htmltable-control]

HtmlTable control used in ASP.net webforms applications

17 questions
2
votes
4 answers

How can I show a formerly hidden HtmlTableRow via jQuery?

I have an HtmlTable with four rows. The first two (a "column header" row and a regular data row) display always. If the user selects a "+" button, another one should be added, and then another (four rows max). The two "dormant" rows are created in…
B. Clay Shannon-B. Crow Raven
  • 8,547
  • 144
  • 472
  • 862
2
votes
1 answer

How can I get a Literal control to span multiple cells in an HTML row?

I want to use a "grid system" to house my dynamically created controls (conditionally created, based on user selections) on a web page. I am creating an html table, the controls, and then adding the controls to the html table row cells. The problem…
B. Clay Shannon-B. Crow Raven
  • 8,547
  • 144
  • 472
  • 862
2
votes
1 answer

Add table row as soon as textbox is not empty ASP.NET / C#

I currently have a table with two rows. Each row contains a checkbox (except the first) contains a checkbox in one column, a label in the next, and a text area in the third column. I'm currently having two problems, one is my "Add Row" button will…
nickrenfo2
  • 85
  • 1
  • 10
2
votes
3 answers

Select input tag in the same row from a table on clicking an anchor tag in the same row

Sample Html(This only contains one of many more row).
8
thunderbird
  • 2,715
  • 5
  • 27
  • 51
1
vote
0 answers

Accessing Web Table Input Elements

I have been attempting to input a username and password into a GUI that I am accessing remotely. Here is my Code: Dim UNBox As IHTMLInputElement Dim PWBox As HTMLInputElement Dim Login As HTMLInputElement Dim doc As HTMLDocument Dim LoginInfo As…
Joe
  • 11
  • 4
1
vote
2 answers

Why does setting display to none in the code-behind not add it to the HTML?

I'm trying to set the display style of a couple of HtmlTableRows to "display:none" in code-behind like so: foapalrow3 = new HtmlTableRow(); foapalrow3.ID = "foapalrow3"; foapalrow3.Attributes["display"] = "none"; ...but it's not working - the "View…
B. Clay Shannon-B. Crow Raven
  • 8,547
  • 144
  • 472
  • 862
0
votes
0 answers

JavaScript clone row multi input [] request.getParameterValues() data not coming

When I clone the rows of a dynamic html table with Javascript and try to fetch the data in each row in the Java Spring MVC Controller, the data does not come. My jsp and Javascript code :