Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I just coded up a quick sample from scratch using dojo 1.4 and was able to set an arbitrarily large DBX size with no problems.</p> <p>Without seeing your code it might be hard to find where your issue is stemming from but it does not seem to be an inherent limitation of the dojo toolkit. Perhaps you have some CSS rules that are inherited in a way you did not anticipate?</p> <p>Perhaps you can use my sample below to compare with your use case and figure out what is different about your implementation.</p> <pre><code>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&gt; &lt;html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"&gt; &lt;head&gt; &lt;title&gt;test&lt;/title&gt; &lt;meta http-equiv="Content-Type" content="text/html; charset=utf-8" /&gt; &lt;script src="http://www.google.com/jsapi" type="text/javascript"&gt;&lt;/script&gt; &lt;script type="text/javascript"&gt; djConfig = { parseOnLoad: true }; google.load("dojo", "1.4"); google.setOnLoadCallback(function (){ dojo.require("dijit.Dialog"); dojo.require("dijit.form.Button"); }); &lt;/script&gt; &lt;style type="text/css"&gt; @import "http://ajax.googleapis.com/ajax/libs/dojo/1.4/dojo/resources/dojo.css"; @import "http://ajax.googleapis.com/ajax/libs/dojo/1.4/dijit/themes/tundra/tundra.css"; &lt;/style&gt; &lt;/head&gt; &lt;body class="tundra"&gt; &lt;button dojoType="dijit.form.Button" type="button"&gt;Show big Dialog &lt;script type="dojo/method" event="onClick" args="evt"&gt; dijit.byId("bigdbx").show(); &lt;/script&gt; &lt;/button&gt; &lt;div id="bigdbx" dojoType="dijit.Dialog" title="Big Dialog" width="900px"&gt; &lt;p style="width: 1100px; height: 800px;"&gt;Paragraph with really wide fixed size...&lt;/p&gt; &lt;/div&gt; &lt;/body&gt; &lt;/html&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload