For some reason, in IE (IE8 in Win 7 to be precise), when I click on a mailto link, I end up with the current page being replaced by a blank page with mailto in the address bar.
Specifically, this is what happens when I click the mailto link:
New about:blank tab opens and a security prompt pops up asking if I want to open Outlook.
At...
Hi,
i read about the Google Closure Compiler and i will try to use it to make my web application better. But i think it is doing the same things like the dojo shrinksafe.
Has anyone tried to use the Google Closure Compiler for a complex dojo project?
Thanks
Benjamin
...
Help wanted! I use the tundra theme and I have a nice button in firefox and in IE it's somewhat larger and doesn't look as silvery - maybe the image ain't applied in IE.
<button id="btn1" dojoType="dijit.form.Button" type="submit">Submit</button>
And my general belief is that the Dojo toolkit seems to have a lot of bugs in it, sure t...
(This is partly a question, partly a request to the Dojo Campus folks; they suggest using SO for communication of support questions, and partly a "here's a useful link" to guide people like me who are lost in dojo.)
Can anyone find a way, in two clicks or fewer, to get from the home page of the Dojo Campus to any of the excellent refere...
The Dojo Toolkit used to come with a testing facility called "Doh". It was in the /utils directory.
Now when you download dojo-release-1.3.2 the /utils directory is nowhere to be found.
Is Doh dead and gone?
...
I am trying to add a delete button to the Dojo Datagrid and I currently have the following javascript:
function createGrid() {
gridTmp = new dojox.grid.DataGrid({
store: jsonStore,
structure: [
{name: "Report No", field:"inc_number"},
{name: "Incident Date", field: "Incide...
I have used the same method accross my site for displaying a datagrid, I'm only seeing this problem in one column on one grid. All data in the 'firstname' column is showing as "...".
I'm not seeing any errors or warnings.
<span
dojoType = "dojo.data.ItemFileReadStore"
jsId = "userStore"
url = "/usermanager/usergrid"
>
</spa...
It would be so slick if you could use dojox.grid.DataGrid and dojox.data.HtmlStore together. Maybe there is an easier way to get sortable tables with Dojo, but this is all I can come up with... and it doesn't quite work. There is a DojoCampus example of this but it does not work either! What am I missing?
<html>
<head>
<style type="...
I have a Dojo tooltip that's been initialized and it works perfectly find when hovering over the desired node. The problem is that once the tooltip shows up for the first time, when i'm no longer hovering over the "tooltip" area then the tooltip appears in the top-left part of the page. How do I hide the tooltip when i'm out of the "ho...
Hi all,
I have a dojo.dnd.Source container with multiple dnd items. I'd like to give the user the option to select one of the dnd items in the source and then use their backwards/forwards keys to navigate to other items in the source. I've tried setting onkeyup/onkeydown handlers on the dnd items, but they don't seem to fire. I've also ...
Hi everyone,
I've created a number of widgets that are loaded as tab panes in a tabcontainer. Everything seems to work well, except I'm getting different results when using my custom widgets vs. creating everything in markup (tab content isn't taking up the whole page, 3rd party widgets aren't behaving properly, etc). This all leads me ...
I need to be able to detect when an icon is dropped outside its source container to anywhere on the screen (excluding other source containers, but that's a future problem to solve). The approach I'm attempting is to make a div that expands to the entire screen a dojo.dnd.Target. It works but only about 1/2 of the time.
I've isolated the...
According to the dojo docs, dijit.layout.AccordionPane is deprecated in favor of dijit.layout.ContentPane
link: http://api.dojotoolkit.org/jsdoc/1.3.2/dijit.layout.AccordionPane
I cannot find an attribute for ContentPane that functions similarly to the AccordionPane's "onSelected" attribute. Is there another widiget or another way to us...
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 mess... So any help would be appreciated (:
...
I'm trying to populate a Dojo grid with data from an ASP.Net web service. There is going to be a lot of rows, so I want to implement paging on the server side, so the web service will accept parameters "start" and "count". I've gotten pretty close, by using QueryReadStore and overriding the "fetch" function to add additional parameters...
i have two divs on a page. each has several dijits. i have atoggle that shows only one div or the other. when i submit the form, i only want to validate the dijits that are in the div that is displayed. is there a way to do this? basically, and dijits that have "display:none" should not be validated.
...
I need to be able to instantiate an object of a class in Dojo at runtime and mix it into another object (kind of like specifying an extends or an implements in Java, but at runtime). and I came up with the following solution:
var declaredClassBackup = this.declaredClass; // backup the "declaredClass"
var mixinObject = null;
try {
...
I have a set of items that can be dragged / dropped using Dojo DND, that part has already been implemented and all is working well. The specific question I have is that I'd like to display very different data both in terms of content and visually while the item is being dragged than the initial view of the item, which is what is present...
Anyone know how to turn animation off in dojox.widget.Dialog? I love the modal dialog, but want it to pop up immediately, rather than the painfully slow animate on that it does. I tried turning off the apparent animation controls, but it still animates. Also looked into the src code, but didn't see any smoking guns for a configuration op...
I have an HTML form using dojo and have the following code for a radio button selection choice:
<input type="radio" dojoType="dijit.form.RadioButton" name="infoUrgent" value="deferrable" id="deferrable"> Deferrable
<input type="radio" dojoType="dijit.form.RadioButton" name="infoUrgent" value="immediate" id="immediate"> Immediate<br>
...