Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
475
Retrieve grid values in client side scripting
posted

Hi,

To fulfill the requirement, I need to use client side scripting such as:

<script type="text/javascript">

 

 

function

activeCellChanged(sender, args)  {

 

 

 

var activeCell = args.getActiveCell();

 

 

alert("row activated:" + activeCell.getRowIndex());

ig.smartSubmit('caseDetailForm:tranGridView',null,null, 'caseDetailForm:tranDetailPanel', null);

}

</script>

<ig:gridView>

  <ig:gridClientEvents activeCellChanged="activeCellChanged">

 ...

</ig:gridView>

 

my question is:

1) Are there more events for ig:gridClientEvents that I can catch? I know there are enteredEditMode. Where is the complete documentation for it?

2) How can I retrieve grid value? For example, I need to get the value of first row and secnd column?

 

thanks.

Parents Reply Children
No Data