vote up 0 vote down star

Hi there,

How do I override a method in dojox.grid._Scroller class from a class extending dojox.grid.DataGrid.

dojox.grid.DataGrid extends dojox.grid._Grid, which requires dojox.grid._Scroller. The method of interest here is: getScrollBottom(inTop). Thanks in advance!

David

flag

1 Answer

vote up 0 vote down

You want to use dojo.extend

 dojo.require('dojox.grid._Scroller');
 dojo.extend(dojox.grid._Sroller, {
    methodToOverride: function() {
      // good times here
    }
 };
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.