Custom Query (18300 matches)
Results (169 - 171 of 18300)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#7419 | duplicate | setValue function doesn't work correctly on DojoX Widget Calendar | ||
Description |
Hi, here is the problem. After the page is loaded, calendar shows todays date (by showing correct month, year and highlighting a day) and then instantly changes to the month and year from dateObject (in this place it does almost what I want). However, after the month and year is changed the correct day is not highlighted, instead todays day stays unchanged. Javascript: <script type="text/javascript"> dojo.require("dojo.parser"); // scan page for widgets and instantiate them dojo.require("dojo.date.stamp"); var dateObject = new dojo.date.stamp.fromISOString('2008-07-11'); dojo.addOnLoad(function(){ var Calendar = dijit.byId('cal'); Calendar.setValue(dateObject); }); </script> Html: <div dojoType="dojox.widget.Calendar" id="cal"></div> |
|||
#9505 | invalid | FF3.5 BorderContainer Iframe get vertical Scrollbar | ||
Description |
I use Firefox 3.5 since today. Before I uses 3.0.11 and IE 7 and 8. Till today and only on FF 3.5 i have the problem of a vertical scrollbar in the IFrame. Beispiel: index.php <html> <head> <title></title> <script type="text/javascript" src="/dojoroot/1_3_1/dojo/dojo.js" djConfig="isDebug:false, parseOnLoad: true"}> </script> <style type="text/css"> @import "/dojoroot/1_3_1/dojo/resources/dojo.css"; @import "/dojoroot/1_3_1/dijit/themes/tundra/tundra.css"; body { width:100%; height:100%; } </style> <script type="text/javascript"> dojo.require("dijit.layout.BorderContainer"); dojo.require("dijit.layout.ContentPane"); </script> </head> <body class="tundra"> <div dojoType="dijit.layout.BorderContainer" design="sidebar" id="borderContainer" splitter="true" style="width:100%;height:100%"> <div dojoType="dijit.layout.ContentPane" region='left' width="200px" splitter="true"> Left </div> <div dojoType="dijit.layout.ContentPane" region='center' splitter="true"> <IFrame src="inner.html" style="width:100%; height:100%"> </IFrame> </div> </div> </body> </html> The inner Scrollbars are ok. but the outer one in the BorderContainer? is to much. Greetings, Ava-chan |
|||
#9620 | duplicate | dijit.form.DropDownButton width declaration | ||
Description |
I have build in a dijit.form.DropDownButton? and can't set it's width. I write the button in HTML Mode, not programmatic. I test to set it with width=200px and with style="width:200px". With and without !important flag. The Button never appears in the right width. But when I declare style="width:200px" to the button the Menu div have the size and the clickrange have the size. I've test it in IE 7 and FF 3.5 |