Tagged Questions
2
votes
1answer
125 views
How to implement Vertical layout
Is there a way to implement vertical layout using Dojo/Dijit? I don't like BorderLayout because of the splitters.
1
vote
1answer
80 views
How to scroll to a certain element in dojo contentPane programatically
I have a ul list of 100+ li elements displayed inside dojo.contentPane which is displayed in a custom dialog which extends dojo dialog. When this contentPane is rendered, I would like scroll bar to ...
1
vote
2answers
124 views
Dojo: BorderContainer how to change splitter width/height?
I'm wondering, how can I change the size of splitter in BorderContainer ?
Thanks for help.
1
vote
2answers
771 views
Dojo and Ajax - rendering widgets
I'm trying to load content into a Dojo content pane in a specific html tag and not replace the entire content pane. The html I'm loading includes a markup defined widget that I'd like to have rendered ...
1
vote
1answer
324 views
dijit style claro not in Google CDN
dojo's Theme Tester is Showing theme claro as one available theme in http://archive.dojotoolkit.org/dojo-2010-04-12/dojotoolkit/dijit/themes/themeTester.html?theme=claro
But claro is not accessible ...
1
vote
1answer
679 views
Generically Replace Loading Message for a dijit ContentPane
I want to replace the standard dijit.ContentPane loadingMessage with a animated GIF instead of the default "Loading..." message.
According to documentation, the default message is:
<span ...
1
vote
1answer
888 views
dijit BorderContainer auto-grow
Is there a way to have a dijit.layout.BorderContainer auto-grow in height? I've tried setting min-height: 200px; height: auto;, but it won't scale.
I've tried looking at the API, but that thing is a ...
1
vote
1answer
2k views
Using table inside dijit.form.ContentPane doesn't work in Internet Explorer 7
I'm having problems using a table inside a ContentPane. It seems to work fine in Firefox but is invisible in Internet Explorer 7. The html below demonstrates what I mean. In Firefox you get:
Before ...
1
vote
1answer
2k views
Dojo TabContainer with styling in Internet Explorer
The following works in firefox:
< div style="position:absolute;top:0px;margin-top:60px;bottom:0px;width:100%">
< div id="mainTabContainer" dojoType="dijit.layout.TabContainer" ...
0
votes
1answer
59 views
How to create wizard/screens with disabled pages/buttons using Dojo Dijit?
I want to create a sequence of screens using a StackContainer in Dijit.
However, I want to disable consecutive pages and their corresponding buttons in the StackController until the form on the ...
0
votes
2answers
237 views
Dojo/Dijit TitlePane
How do you make a titlePane's height dynamic so that if content is added to the pane after the page has loaded the TitlePane will expand?
0
votes
1answer
128 views
Content not shifting up when Diji TitlePane collapsed
Quite simple really.
I have two ContentPanes that I load content into dynamically. The content I load dynamically contains TitlePanes. When I collapse these TitlePanes the content below the TitlePane ...
0
votes
1answer
632 views
dijit.layout.TabContainer
Having problems getting a dijit.layout.tabContainer to display.
I add it programmatically, add a contentPane and all appears well in the DOM.
No JS errors or warnings and I can see the controls ...
0
votes
1answer
282 views
How can I set the style of a dojo-element?
I'm using an accordion container, like this:
<div class="order-accordion" dojoType="dijit.layout.AccordionContainer">
...
</div>
The dojo-framework converts it to the actual ...
0
votes
2answers
1k views
djit.layout.Tabcontainer - click-based event is fired two times
I want to add listeners on selection event, but implementation via code below fired event two times. Only javascript core onClick event is fired correctly one time.
dojo.connect(myTabCont, ...
0
votes
1answer
306 views
How to make a scrollable, clickable list of items in Dojo?
I'm totally new to Dojo (using 1.3 via Google's XD), and want to try to do things the 'right way', but don't see an obvious dojo.layout.*Container for this.
Basically, I have a UI with a list of ...
0
votes
1answer
1k views
dijit.layout.TabContainer nested tabs auto load
I'm fairly new to Dojo toolkit, and well really like it. But I have a problem with nested tabs auto-refreshing. Here is a sample of my practice code where this problem exists. I'm currently ...