Search
DomRenderer.onRowDeleted Method
See Also
 






Implement this method in a derived class to handle row deletion.

Namespace: MindFusion.DataViews
File: DomRenderer.js

 Syntax

JavaScript  Copy Code

function onRowDeleted ()

 Example

The following code shows you how to implement a custom class that extends DomRenderer and implements the onRowDeleted method:

JavaScript  Copy Code

class MyRenderer extends DomRenderer
{

   /**
   * DomRenderer.onRowDeleted override.
   */
   function onRowDeleted() {
     
 invalidate();
    }
   
    /**
    * DomRenderer.invalidate override.
    */
    function invalidate()
    { 
        //put code that repaints the grid
    }
}

 See Also