Search
DomRenderer.renderGrid Method
See Also
 






Implement this method in a derived class to handle the initial rendering of the grid control.

Namespace: MindFusion.DataViews
File: DomRenderer.js

 Syntax

JavaScript  Copy Code

function renderGrid ()

 Example

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

JavaScript  Copy Code
class MyRenderer extends DomRenderer
{
  function renderGrid() {
     //code that renders your custom grid
    }
}

 See Also