Click here to Skip to main content
15,893,588 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
infragistics ultrawebgrid not working in chrome and safari!! What is the way to implement this?
Posted
Updated 18-Oct-11 4:40am
v2
Comments
BobJanova 18-Oct-11 12:30pm    
If the control just doesn't work, you should take it to Infragistics' forums. Implementation for Chrome/Safari should be the same as Firefox, both are standards compliant in rendering, CSS and JavaScript and that's what this control should be using.

You should be bringing this up with Infragistics support. You paid for the controls, right? So you also paid for the support that does with them.
 
Share this answer
 
I had faced this problem yesterday and found the solution of this, this problem was due to RenderDnLvlHTML, which worked fine in up-level browser and not worked correctly in 
Down-level browser.
•  uplevel browser - Internet Explorer 5 and later versions. 
uplevel browser = IE 
•  downlevel browser - Any Non IE Browser except for Internet Explorer 5 and later versions. 
downlevel browser = Non IE
                    
                   Solution:
1-	Include web-browser ASP.NET folder in your solution.
2-	Add new .browser in this folder with name of "CriOS.browser" if you want to change the name you have to change it accordingly in following code.
3-	Replace the exciting content from file with the following code.
<browsers>
    <browser id="CriOS" parentID="Safari">
        <identification>
            <userAgent match="CriOS" />
        </identification>

        <capabilities>
            <capability name="browser" value="CriOS" />
            <capability name="ecmascriptversion" value="3.0" />
            <capability name="javascript" value="true" />
            <capability name="javascriptversion" value="1.7" />
        </capabilities>
    </browser>
</browsers>

4-	Now take a look  that problem has been resolved.
 
Share this answer
 
Problem:

XML
I had faced this problem yesterday and found the solution of this, this problem was due to RenderDnLvlHTML, which worked fine in up-level browser and not worked correctly in
Down-level browser.
•  uplevel browser - Internet Explorer 5 and later versions.
uplevel browser = IE
•  downlevel browser - Any Non IE Browser except for Internet Explorer 5 and later versions.
downlevel browser = Non IE

Solution:

      1-  Include web-browser ASP.NET folder in your solution.
      2-  Add new .browser in this folder with name of "CriOS.browser" if you want to change the name you have to change it accordingly in following code.
      3-  Replace the exciting content from file with the following code.
<browsers>
    <browser id="CriOS" parentID="Safari">
        <identification>
            <userAgent match="CriOS" />
        </identification>

        <capabilities>
            <capability name="browser" value="CriOS" />
            <capability name="ecmascriptversion" value="3.0" />
            <capability name="javascript" value="true" />
            <capability name="javascriptversion" value="1.7" />
        </capabilities>
    </browser>
</browsers>

      4-  Now take a look  that problem has been resolved.
 
Share this answer
 
Add this to your web.config

XML
<system.web>
  <browserCaps>
      <filter>
   <case match="Chrome">
      browser="IE"
    </case>
    <case match="Safari">
      browser="IE"
    </case>
  </filter>
  </browserCaps>
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900