hi all
is Javascript used in documentum different from normal javascript ?
i am working with jsp page where i used datagrid control with <dmf:checkbox> to rows and passed r_object_id as <dmf:arguments> to checkbox. I need to count how many rows I have retrieved from the query. when i use the following line of code it is showing me error
function somefunction ()
{
var max=document.checkbox.length;
alert(mar);
}
the somefunction is called when i select a checkbox and count the no.of rows in datagrid, but the error says "length" cannot be resolved.
if I use <input type =checbox> i am getting the what i want but i cannot pass r_object_id as parameter to the javascript function.
my question are :
1) if I use <dmf:checkbox > then how to get the length property in javascript
or
2) if i user <input type=checkbox > how to pass r_object_id as argument to javascript function
help me out............