Tagged Questions

3
votes
2answers
119 views

How can I increase the size of a checkbox inside of a table?

I'm trying to enlarge the checkboxes I've placed inside of a table. width:###px; height:###px; only seem capable of decreasing the size. If they are set to anything higher than the default size, the ...
2
votes
1answer
242 views

Changing color of table column text when checkbox is checked

I have a table where per row the first column is a checkbox and the remaining columns are text. What I'd like to do is retroactively change the color of the text in columns 2:n for any rows where the ...
2
votes
2answers
390 views

struts2 table with iterator shows checkbox in different row

I have the following code in a jsp. <table> <tr> <s:if test="%{#session['s_userRole']=='Supervisor'}"> <th>Select</th> </s:if> ...
2
votes
2answers
259 views

Making a checkbox recognize its intended data

Level: PHP Learner I'm stuck with a checkbox problem. I have a db that contains names and unique id numbers. Using a query, I am pulling a selection of students and showing them to a user in an ...
2
votes
2answers
2k views

jquery tablesorter and select all checkbox in table header

I have a table with a "select all" checkbox as the first header column and some simple code to select all checkboxes on the page when the header checkbox is clicked. ...
1
vote
2answers
1k views

Jquery Selecting Table Rows with Checkbox

I have a table as <table id="rowclick2"> <tbody> <tr > <td class="cb"><input type="checkbox" value="yes"></td> <td>row 1</td> ...
1
vote
3answers
739 views

How can I put a “(de)select all” check box in an SWT Table header?

I have an SWT Table that I'm instantiating with the SWT.CHECK style in order to display a check box next to every row. My users have requested another check box in the header row of the table in ...
1
vote
3answers
148 views

jQuery add border to table

I'm a jQuery noob, I tried this: <input value="1" type="checkbox" name="mytable" id="checkbox2" style="float:left;" /> {literal} <script ...
1
vote
1answer
855 views

Checkbox in first cell of each row in an html table displaying mysql query results

I have a simple HTML table display of data that results from an MySQL query. I would like to have a checkbox in the first cell of each row. I am asking for some suggestions as to where I might go ...
1
vote
2answers
323 views

unable to remove row from table created by jquery

i am creating a table based on result from servlet, which contains a checkbox , when the cheked property of checkbox is true there will be one button in the bottom of the table which calls for a ...
0
votes
1answer
33 views

Submit form and send data through AJAX at the same time?

Lets say I have a simple form, with a select combobox and a table that has a checkbox for each row, to choose the rows you want. Now, on the server-side, I need to associate all the items selected ...
0
votes
1answer
20 views

How to access values of cells within a row of a table which has been checked by a checkbox in javascript?

I was wondering if anyone could help me with getting this working. I'm using html to create a table which has at least 1 row but no max number of rows - as they can be added/removed by the user - ...
0
votes
1answer
46 views

A table value places a checkmark in a checkbox on a form

How do you have MS Access place a checkmark in a checkbox control based off a value in a table?
0
votes
0answers
75 views

How to use @table variable column values in gridview, if I can

I have a table like this. I am using stored procedure to return this table with an added field of a check box as follows. declare @out_table table( check1 bit, ID int not null primary key, item ...
0
votes
3answers
304 views

Copy html table row and append in other table

I have two tables [Source: table1, Destination:table2] with 3 columns each (checkbox, value1, value2). On selecting a checkbox in table1, jquery should copy that particular row and append it to table2 ...
0
votes
3answers
439 views

jquery datatable checkall

HTML <div class="box"> <table id="Datatable"> <thead> <tr> <th><input name="checkall" type="checkbox" class="checkall" value="ON" /></th> ...
0
votes
1answer
113 views

JRXML - Display a checkbox in a table.

I can't manage to display a checkbox in a table in jrxml. Here is a sample of my code: <detail> <band height="45" splitType="Stretch"> <textField ...
0
votes
1answer
95 views

Natively looking checkboxes in SWT/Jface tables

Are there any tested solutions that enables me to have natively looking checkboxes in SWT tabes? After long googling i found clever way to create image screenshoots of SWT checkbox buttons, but it ...
0
votes
0answers
302 views

How to fire Checkbox(in tr click) onClick event without toggle Checked status?

I have a table with checkbox in each row.(default row is checked) Now when I click the checkbox self,it fires the alertbox but I need to fire the onClick event when I select the row as well ...
0
votes
4answers
1k views

jQuery Find child Checkbox

I have a quick jQuery question: I have the following type of table: <table id="my_table"> <tr> <td><input type="checkbox" value="24"></td> <td> Click ...
0
votes
1answer
19 views

cannot return datable

public DataTable ExcelToDatatable_dt1 { get { foreach (GridViewRow rowItem in GridView1.Rows) { CheckBox chk; ...
0
votes
0answers
281 views

Bizarre IE checkbox bug?

I have some perfectly mundane code that puts 4 check-boxes in a 2x2 table. In Internet Explorer (but not in Firefox,Chrome,Opera, or Safari) the the two rightmost check-boxes will not toggle on and ...
0
votes
2answers
771 views

jQuery: manipulating through children to check the checkbox in a table row

$("tr.clickable").each(function() {$(this).click(function() { $(this).children("td:first > input").is(":checked") ? $(this).children("td:first > ...
0
votes
1answer
40 views

Flex: How to most effectively tavere a table column

I have a table "template" which is used in various "instances". All instances have checkboxes in the second column (for record-delete). What would be the most effective way of traversing the table ...
0
votes
3answers
862 views

Getting checkbox-selected data from Table A inserted into Table B

[Status: Learner] I have a Table A with thousands of records. On each displayed page, only 20 rows are showing, with the following fields: check last_name first_name gr eth sex id_num (a ...
0
votes
1answer
314 views

Persistence of checkbox data from 5-page html table display

I'm a PHP learner. I am pulling rows from a db and displaying them in a very simple HTML table. Each row begins with a checkbox. There are 20 records on each page, and there are 5 pages. Every ...
0
votes
2answers
658 views

Check/ Uncheck all checkbox of a Html Table

i have got a HTML table which contain a check box in and other checkboxes in i want that all 's checkboxes should be checked /unchecked on basis of 's Check box... please help me resolve this... i ...
-2
votes
1answer
64 views

How to make an html table dynamic like those used in phpmyadmin using jquery?

I guess you all know how tables look like in phpmyadmin (I'm talking about the html tables which show the structure and data of the SQL tables). I'm looking to add a similar functionality to my html ...