jQuery - Click checkbox and want to select 4th column value
Hi,
I have a tabular report with column one checkbox and 3 data columns and forth column is select list.
When I click on row 23 I want the selected value of column 4 of row 23.
??? help.. thanks
jQuery
Last Comment
BILL Carlisle
8/22/2022 - Mon
soupBoy
Please post some of your code....we will then add the correct JQuery/Javascript.
BILL Carlisle
ASKER
function setPageID(pCheckBx){
alert('['+pCheckBx.value+']');
// pCheckBx lets say is the checkbox of row23
// Below is select list for Row23
//<select name="p_t01" id="P130_APPRV_CODE" size="1" class="selectlist">
//<option value="C" selected="selected">Current</option>
//<option value="H">Historical</option>
//</select>
if(pCheckBx.checked){
alert(pCheckBx.value);
var l_bpcd_existing_list = $v('P130_BPCD_LIST');
var l_apprvcd_existing_list = $v('P130_APPRVCD_LIST');
//Want to add "Current" to list at xxxxxxxxxxxxxxxxxx
$s('P130_APPRVCD_LIST', l_apprvcd_existing_list+':'+ xxxxxxxxxxxxxxxxxx );