Login Register

render

What might cause charts to fail under IE7?

For some reason, at least on my main development machine the charts (pulled from SVN revision 14583) do not work on my machine under IE7. They appear fine under Firefox 3.

The problem is pretty obvious - it happens even when loading the chart tests (e.g. test_chart2d.html). While space appears to be reserved for the charts, they never become visible.

I'm guessing this isn't a widespread problem, since others seem to be using charts with IE7. Can anyone suggest what might be strange about my configuration which is preventing correct operation?

Regards,
Richard

grid doesn't render ???

I have a structure as shown below :


dojo.provide("grid.sample");

(function(){
grid.sample.structure = [{
cells: [[{
name: 'Dow',
field: 'dow',
rowspan: '2'
}, {
name: 'Stay Date',
field: 'staydate',
rowspan: '2'
}, {
name: 'T1 (1-6)',
style: 'background: #d7d7bF;'
}, {
name: 'T2 (7-13)',
style: 'background: #d7d7bF;',
colspan: '2'
}, {
name: 'T3 (14-20)',

TabContainer first tab rendering incorrectly in all browsers

 Please forgive me if this has been asked and answered before.

I am creating TabContainer children programmatically in my application.   Consistently, in IE7 and FireFox 2 and 3, the first tab child which is created, the tab image renders incorrectly, with the content directly behind the tab itself in the z-axis.

Example rendering of the first tab over the content:
http://alpha.jenkinsmd.com/images/alpha_jenkinsmd_com/12/r_dojo-image1.p...

As soon as a second tab control is added, the rendering is correct:

Option value and Combobox...

Hi to all,
I would Use the Dojo Widget Combobox for my code :

************************************************************
[select name="marca" dojoType="dijit.form.ComboBox" autocomplete="false" onChange="setVal1"]
[OPTION VALUE="APRILIA"]APRILIA[/OPTION]
[OPTION VALUE="BENELLI"]BENELLI[/OPTION]

[OPTION VALUE="BIMOTA"]BIMOTA[/OPTION]
[OPTION VALUE="BMWITALIAMOTO"]BMW ITALIA MOTO[/OPTION]
[OPTION VALUE="BUELL"]BUELL[/OPTION]
[OPTION VALUE="CAGIVA"]CAGIVA[/OPTION]
[/select]
***************************************************************

Re-render self within the widget

I have a widget on a page that subscribe to a topic. When I click a button the page publishes and a function called refreshMe() will be called and the context is changed and finally the widget re-render itself to display the new text from "orange" to "apple". But I got error "this.render is not a function". Any help is appreciated.
Here is the code:

Dojo Widgets Test page

djConfig={
                "isDebug": true,
                "parseOnLoad": true,
                "baseUrl": "../dojolib/dojo/"
        };

ContentPane+TabContainer Alternatives?

I am working on a project where I am following the progress of items through a process. I have created a TabContainer with several tabs, each tab being a ContentPane. Everything works but it is far too slow to render on some of the low-end computers in the office. The page loads quickly enough and the raw content is visible but the browser then sits for 2-6 seconds, depending on the horsepower of the client machine, before the TabContainer shows up. Meanwhile, CPU usage jumps and consumes at least 100% of one of my cores.

problems with refresh

Hello,

I have got a following problem:
I have a grid showing a shopping cart (stored on the server side, fetched with a custom write store from the server over DWR). When I put something to the cart using other controls, I want my grid to make a refresh. However, nothing happens! Not a single call to a data model. If I refresh the entire page with a browser button, the new stuff is showing...

My code looks like:

myShoppingCart.put(new order);
dijit.byId("shoppingCartGrid").update();

Instead of update I also tried render() and refresh()

Grid not rendering in ContentPane when Pane is display:none

I have been eagerly waiting for the Grid. I currently have a page that makes extensive use of hidden ContentPanes. I was using os3grid, but wished to switch to an single toolkit. The grid I defined doesn't display in the ContentPane when the style of the ContentPane is changed to "block".

I modified the existing test_grid.html page as a test case.

After clicking the "Show Hidden ContentPane" button the column headings show as only two small boxes.

Here is an excerpt from the code:

Syndicate content