Ticket #4985 (closed defect: wontfix)
DnD: IFrame(s) Integration
| Reported by: | guest | Owned by: | elazutkin |
|---|---|---|---|
| Priority: | low | Milestone: | 1.0 |
| Component: | DnD | Version: | 0.9 |
| Severity: | minor | Keywords: | DnD IFrame Mashup |
| Cc: |
Description
Web page does not properly render iframe based dojoDndItem when using more than one IFrame components. For example the following does not work:
<html> <body>...
<div class="dojoDndItem" dndType="My_IFrame_Component_1"> <div dojoType="dijit.TitlePane?" title="WorldNews?"> <div><iframe src="http://www.siteone.com"/></div> </div></div>
<div class="dojoDndItem" dndType="My_IFrame_Component_2"> <div dojoType="dijit.TitlePane?" title="StockQuote?"> <div style="border: 0px none ; margin: 0px; padding: 0px; width: 100%;"> <iframe src="http://www.sitetwo.com"/> </div></div></div> </body> </html>
Should I be able to use any type of HTML content in my div for type dojoDndItem?