asp.net - Intuit Partner Platform (IPP) QuickBooks Online (QBO) BlueDot Menu ASPX page not rendering in Internet Explorer (IE) -
asp.net - Intuit Partner Platform (IPP) QuickBooks Online (QBO) BlueDot Menu ASPX page not rendering in Internet Explorer (IE) -
i have .aspx page display either bluedot or connecttoquickbooks buttons. resultant html looks this, collected ie page:
<!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"> <head> <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" /> <title>truecommerce intuit connect page</title> <script type="text/javascript" src="https://appcenter.intuit.com/content/ia/intuit.ipp.anywhere.js"></script> <script type="text/javascript"> intuit.ipp.anywhere.setup({ menuproxy: 'http://localhost:1384/menuproxy.aspx', granturl: 'http://localhost:1384/oauthgrant.aspx' }); </script> </head> <body> <div id="bluedotdiv"> <ipp:bluedot></ipp:bluedot> </div> </body> </html>
this code not display in ie. display fine in chrome , firefox.
i validated html w3c markup validation service , received error on tag, expected.
i using next ie browser ie version: 8.0.7601.17514 64-bit edition
we using silverlight , have embedded aspx page utilizing infragistics html viewer command - silverlight xamhtmlviewer. bluedot menu not appear when called either within of xamhtmlviewer or called straight (though works both ways in chrome , firefox).
any ideas?
https://ipp.developer.intuit.com/0010_intuit_partner_platform/0025_intuit_anywhere/0060_reference/widgets/0010_connect_button
to display connect quickbooks button in ie8, html xmlns attribute required, example:
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:ipp="">
asp.net internet-explorer infragistics intuit-partner-platform quickbooks-online
Comments
Post a Comment