Problem with Opera 11.O browser

Asked By 0 points N/A Posted on -
qa-featured

Hello. I am having problem using grid on my Opera 11.0 browser. Whenever I select row using my cursor, the selected rows scrolls up. Here’s an example https://docs.sencha.com/ . I am using Sencha ExtJs 3.3.

Please give me an advice on what should I do.

Thank you so much! 

SHARE
Answered By 55 points N/A #107433

Problem with Opera 11.O browser

qa-featured

 

Try the following things
 
– Reinstall the new Sencha ExtJs from their site.
 
– Get the latest version of Opera browser and install it.
 
– If the above steps are done and you are still facing the problem then i think that there is some problem with the Grid view focus cell method in the Ext Library. You can try using other method available as alternatives or try using the following code
 
 
Ext.override(Ext.grid.GridView, 
{
    focusCell : function(row, col, hscroll) 
    {
        this.syncFocusEl(this.ensureVisible(row, col, hscroll));
        
        var focusEl = this.focusEl;
        
        if (Ext.isGecko) 
        {
            focusEl.focus();
        } else if (!Ext.isOpera) 
               {
                    focusEl.focus.defer(1, focusEl);
               }
    }
});
 
Hope it helps you.

Related Questions