dojo

Dojo: Get displayed items from an DojoX Grid

Is there any way to get all displayed items from an dojox.grid? We have an Filter with querys, now we need all items displayed in the moment. To get all selected items is no problem with: var items = grid.selection.getSelected(); ...

Javascript/CSS Tooltip that you can hover over and click

I'm looking for a javascript/css tooltip that can do the following: Shows up when you hover over some page element (such as a help icon.) Repositions itself based on the browser window (for example if it's on the far right of the page, it will show itself to the left of the page element, otherwise it'll show to the right of it. That wa...

How to retrieve custom Dojo widgets after they've been created in a declarative manner

I found that Dojo has the most awesome and unappreciated feature - Declarative widget instantiations/layouts. This is the type of instantiation where you create the widget with raw html, and don't need any javascript (simply by specifying the dojoType attribute). (I discovered this by following this awesome (although horribly css'ed) tut...

How to load a Zend form view to Dojo tab container programatically ?

Hi, I'm trying to load a Zend_Form into a Dojo tab container programatically (when a user create button on page new tab with a user form is added to the tab container). I have created the form view correctly (/modules/default/views/scripts/forms/index.phtml), but I have no idea how should I call this form inside my js function. ...

How to enable Multiple Selection on dojox TreeGrid ?

Hi I am looking for TreeGrid which enables multiple Selection using CheckBoxes. I saw the Dojox TreeGrid looks promising but lacks the Multiple Selection capabilities. I saw a Tree with checkboxes at: http://www.thejekels.com/dojo/Dijit_Tree_Chkbox.html But I haven't figure out is there easy way to enable the same on TreeGrid ? thx tsema...