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://ko.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>
.....
</
I am attaching my test sample which uses version 11.1. So far I have encountered no issues with the client-side events under IE9 for row addition.
In order to be able to continue my research on the matter, I would need to know the exact version of .NetAdvantage which you are currently running.
Please let me know if you have any questions.
I am using Version=11.1.20111.2020
Hi Petar
I'm having the same issue using Ultrawebgrid from version 2011.1, when having an Add button it stays disabled using IE9 in native mode.
Were you able to find a solution for this?
Hi Tynch,
I am having similar issue. Did you find the solution. Please provide.
Hi Peter: Can you provide solution for IE9 issue. I am using same DOCTYPE. Though button is disabled. Neither the Tools -> View compatibility settings option working.
Thanks,
Raja
We are currently using that DOCTYPE, however the Add button seems to be disabled and doesn´t work.
Try with change doc type in aspx page as
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml">
Hi Petar,
Thanks.
Regards.