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.
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 IvanovDeveloper Support EngineerInfragistics, Inc.http://es.infragistics.com/support
Thanks Petar,
Though it is working fine for grid but not working for add new row functionality. I have button in grid as follows. on mouse over ClientSideEvents seems not calling
<
igtbl:UltraGridBand AddButtonCaption="Add New Row" AllowUpdate="Yes" AllowAdd="Yes" CellClickAction="Edit" AllowDelete="No">
Columns>
.....
</