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
205
Ultrawebgrid button is disabled in IE9
posted

Hi,

I am using ultrawebgrid in which I have put a button in band 0 to add a new row , but it is disabled when I use IE9 with no compatibility though it is working if I checked Compatibility to yes in IE9. I want solution for no compatibility mode. I am using higher version (above v 10.1) of Infragistics.

 

Parents
No Data
Reply
  • 49378
    Suggested Answer
    posted

    Hi Rohit_d_t,

    I investigated your scenario and the buttons in the button column seem to be rendered OK, however there are some IE9 related specifics.

    In order for the button column to be rendered similarly to IE8 I suggest that you try handling the MouseOver client-side event of the grid using the following code:


    function UltraWebGrid1_MouseOverHandler(gridName, id, objectType){
    //Check if the mouse is over a cell from the desired button column
        if (null!= igtbl_getCellById(id) && (igtbl_getColumnById(id).Index==2)) {
            
    igtbl_getCellById(id).beginEdit();
             igtbl_getCellById(id).endEdit();
        }
    }

    Please tell me if this helps.

    Best Regards,

    Petar Ivanov
    Developer Support Engineer
    Infragistics, Inc.
    http://es.infragistics.com/support

Children