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
731
how to get next cell value??
posted

 

i am using this code to get current cell value how can i get next cell value???? 

var cell = igtbl_getCellById(cellId);

cell.getValue()

  • 7694
    posted

     Hello,

    Please take a look  JS code below:


    UltraWebGrid ClientSideEvents declaration:

      <ClientSideEvents CellClickHandler="Fire" />

    JS code:

        <script type="text/javascript">
        function Fire(gridID, cellID){
        var cell = igtbl_getCellById(cellID);
        var val1 =cell.Element.textContent;
         var val2 =    cell.getValue();
        }
        
        
        </script>

    Also  you can take a look at the links below:

    Sample: http://samples.infragistics.com/2008.2/
    Help: http://help.infragistics.com/NetAdvantage/NET/2008.3/CLR3.5/

     

    Hope this helps.