Login Register

resize

How can I resize dropdowndatepicker bigger. It's too small.

hey,

I have problems with resizing dropdowndatepicker.
Everything is ok to use it, but it's too small. I want to resize dropdowndatepicker bigger.
Please help me.

Following is my source code.

dojo.require("dojo.widget.DropdownDatePicker");

Thank you in advance.

Resizing a FloatingPane

I'd like to be able to resize a FloatingPane by dragging it's edge like you would with any window, but setting resizable="true" isn't doing that. "resizable" is also set to true in FloatingPane.js.

I've searched around but haven't found an answer...any suggestions would be greatly appreciated.

Thanks!

borderContainer with 2 contentpane & splitter --> to hide and show one contentpane instead of resize

[EDIT: moved to the appropriate forum.]

I am using a borderContainer with two contentpanes with splitter true. I would like to hide and show one of the contentpane instead of resize.

Any pointers would be of great help.

Raaj

setting DateTextBox and TimeTextBox size

Hi everyone!

First of all, my greetings for this incredible toolkit, I just can imagine the hard work it has required...
Going straight to the point, I would like to change (exactly, to decrease) the size of a DateTextBox and a TimeTextBox (in other words, I need to set the width of the field to a shorter value).
On the Dojo book, I noticed the size attribute. I tried to set the size this way:
var startDate = new dijit.form.DateTextBox({ id: 'startDate',
constraints: {datePattern:'dd/MM/yyyy'},
required: 'true' },dojo.byId('startDatePickerDiv')

Resizable modal dialog - is there such a thing?

Hi All,
I'm looking for a dialog that is resizable and modal. Is there a dojo widget that does it, if not, is there a way to tweak one of dojo's widgets to do such a thing.

Thanks
Yoav

Change column size of grid programatically

Hi,

Is it possible to change the size of a column in a grid programatically?

Thank you!
J.

AccordionContainer layout update not calling children layout

Why doesn't the children resize when I do the following? The main accordion container adapts but the accordion panes stay the exact same size.

This is the code after I set new content into a neighboring contentpane setting the heigh of the parent div.

var accordion = dijit.byId('my_accordion_div_id');
if(accordion){
	accordion.layout();
}

Keeping a Dialog Centered

I was just extending the dialog for a custom widget and noticed that if I resized my browser window the dialog no longer remains in the central position in the browser window (something it used to do).

postCreate: function(){
                dojo.body().appendChild(this.domNode);
                this.inherited("postCreate",arguments);
                this.domNode.style.display="none";
                this.connect(this, "onExecute", "hide");
                this.connect(this, "onCancel", "hide");
                this.connect(window,'onresize',"_position");
        },
Syndicate content