Workflow Soluiton

 View Only
  • 1.  Workaround for Grid component in IE 11?

    Posted Feb 06, 2014 05:02 PM

    I am seeing some rendering problems with the grid component when viewed in IE 11.  For example, the rows are not selectable, the grid goes beyond its boundaries on the page, etc.

    If I use the F12 tools in IE, I can fix the problems by choosing a user agent string other than "Default"

    Is there a way to force this behavior when a user opens a form in Workflow?

    Just FYI, creating a group policy in AD is not an option.  I need to see if it can be done either in Workflow Designer or in IIS.

    Thank you in advance.

     



  • 2.  RE: Workaround for Grid component in IE 11?

    Posted Mar 27, 2014 10:08 AM

    This old bug?

    http://www.infragistics.com/community/forums/t/53278.aspx

     

    I think it may be fixed in the most recent version of workflow. I have not had this problem in a while.

     

     

    Edit ig_WebGrid.js and change the function igtbl_dispose(obj) as follows:

    Change:

    for (var item in obj) {

    if (typeof (obj[item]) != "undefined" && obj[item] != null && !obj[item].tagName && !obj[item].disposing && typeof (obj[item]) != "string")

    to

    for (var item in obj) {
    if (typeof (obj[item]) != "undefined" && obj[item] != null && !obj[item].tagName && !obj[item].disposing && typeof (obj[item]) != "string" && obj.hasOwnProperty(item))



  • 3.  RE: Workaround for Grid component in IE 11?

    Posted Mar 27, 2014 03:33 PM

    You might want to see this thread regarding adding an App_Browsers folder to published solutions to getting around grid issues as well:

    http://www.symantec.com/connect/forums/grid-component-unable-select-lines



  • 4.  RE: Workaround for Grid component in IE 11?

    Posted Apr 15, 2014 09:07 AM

    I have the same problem with grid: I'm unable to select row and sorting and resizing columns doesn't work.

    I've tried to change IE useragent string, App_Browsers solution and I have ig_WebGrid.js already fixed with latest Workflow Solution.

    Need another idea. ;)