473,394 Members | 1,854 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,394 software developers and data experts.

Infragistics IFrame Creation in HTTPS--how to fix...

There is an issue with the Infragistics NetAdvantage v3 WebNavigator
component when used in HTTPS. It incorrectly defaults the IFRAME to
HTTP instead of HTTPS. This has the net result of displaying the
error/informational message: "This page contains secure and non-secure
items"

The solution is to modify the src property for the IFrame in
ig_csom.js in function ig_initcsom(). You would need to insert the
following line at line 169:
transLayer.src="./";
The code will therefore look something like the following:

/*
Infragistics Common Script
Version 1.0.8
Copyright (c) 2001-2003 Infragistics, Inc. All Rights Reserved.

.. . .

function ig_initcsom()
{
// Public Properties
this.ScriptVersion ="2.0.4000.30";

.. . .

.. . .
this.createTransparentPanel=function (){
if(!this.IsIE)return null;
var transLayer=document.createElement("IFRAME");
transLayer.style.zIndex=1000;
transLayer.frameBorder="no";
transLayer.scrolling="no";
transLayer.style.filter="progid:DXImageTransform.M icrosoft.Alpha(Opacity=0);"
transLayer.style.visibility='hidden';
transLayer.style.position="absolute";
////////////////////////////////////////////////////
// Added by JNadrowski inorder to resolve HTTPS-IFRAME "This page
contains secure and non-secure items" issue
transLayer.src="./";
////////////////////////////////////////////////////
document.body.appendChild(transLayer);
return new ig_TransparentPanel(transLayer);
}
}

Jason Nadrowski
http://www.informationhub.com
http://www.sharepointhub.com
Nov 18 '05 #1
0 1304

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Templar | last post by:
Hi i'm bothering with such problem... I must dynamic create an Iframe, and then put som raw HTML into it. But I can't. When I create iframe, I can't access its properties. Here's the coe...
2
by: Amy B | last post by:
Hi, I've been trying to figure out how to fix this for several days but nothing I have done so far seems to work. I have posted this message in a Google Excel Programming group, but did not...
5
by: Angel | last post by:
Is there a way to create an IFRAME dynamically via VB.NET. In other words creating the HTML element in the server side code? thanks in advance....
3
by: Rothariger | last post by:
Hello, i have a web application, and i have a menu and below this a IFrame (width:100% heigth:100%) but if i put the dimensions with % dont show anything... if i put a fixed dimension in px or pt...
3
by: Asterbing | last post by:
Since the "on fly addition..." thread has taken another direction, I'm opening a new one to be more explicit and recenter the subject. Well, the subject is to detect when a document is well...
1
by: redbaks | last post by:
Hi! I am trying to implement adding widgets to our template editor (for blogs). I am worried that i might open a window for XSS attacks so i decided to enveloped all widgets inside an iframe. ...
3
polymorphic
by: polymorphic | last post by:
I have succeeded in embedding PDF files in a dynamic iframe. The problem is that I need the PDF to cache. If the PDF remains the same from page load to page load then the pdf is somehow cached with...
1
by: cdmsenthil | last post by:
I have an Infragistics UltrawebGrid . Each Row in the grid is attached to a context menu using Infragistics CSOM Upon click on the menu, I am creating an Iframe dynamically which points to...
23
by: vunet | last post by:
It is recommended by some sources I found to create IFrames in IE using document.createElement('<iframe src="#">') instead of document.createElement('iframe'). Why and what browser versions to...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.