HI All,
I am tryig to pop up table detail on click of particular table cell. So I am taking table cell value in to a parameter and trying to use that parameter in sql query fetch. But not able to get any data May be I am doing wrong in passing parameter or assigning it.
following is the code that I am using to get text of first column and assiginig it to parameter "paramBW" and pop up another table.
function f(e){
$('#Stable').find('tr').click( function(){
paramBW = $(this).find('td:first').text();
// alert ("paramBW"+paramBW);
//alert ('paramservice ' + paramservice);
});
render_DrillThroughPopUp.popup($(e.target));
}
and sql query
select Level from emp_bench_domain_details where business_wait_flag = ${paramBW};
But query not ftching any data
Please help. Thanks in advance.