active questions tagged dojo - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T20:55:21Z http://stackoverflow.com/feeds/tag/dojo http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1888327/dojox-rpc-jsonrest-query-method-and-zend-json-server 0 dojox.rpc.JsonRest query Method and Zend JSON Server ministry 2009-12-11T14:14:01Z 2009-12-11T17:31:13Z <p>I use dojo 1.3.2 with the Zend Framework 1.10 JSON Server. I can successfully execute my method getTreeByScope defined as SMD via JSON-RPC 2.0</p> <pre><code>myService.getTreeByScope({scopeId:1,nodeId:0}); </code></pre> <p>this sends this POST request:</p> <p><em>{"id":1,"method":"getTreeByScope","params":<b>{"scopeId":1,"nodeId":0}</b>,"jsonrpc":"2.0"}</em></p> <p>All is fine.</p> <p><hr></p> <p><b>Now i wanted to use the forest dijit with the service:</b></p> <pre><code>this._gemStructureStore = new dojox.data.JsonRestStore({labelAttribute:"title", service:this._gemStructureServices.getTreeByScope}); this._gemStructureModel = new dijit.tree.ForestStoreModel({store: this._gemStructureStore, labelAttr: "name", deferItemLoadingUntilExpand: true, query: {scopeId:1,nodeId:0}, childrenAttrs: ["children"]}); this._gemStructureTree = new dijit.Tree({showRoot: true, model: this._gemStructureModel, onClick: this.nodeClicked, id: "myTree", label: "root"}); document.body.appendChild(this._gemStructureTree.domNode); </code></pre> <p>But now the executed query Method from the dojox.rpc.JsonRest comes with 2 arguments (deferred = service(id, args)) and the folowing dojo._hitchArgs Method in dojo._base.lang produces now an array with my named parameters. This is the POST request:</p> <p><em>{"id":1,"method":"getTreeByScope","params":<b>[{"scopeId":1,"nodeId":0},{"query": "scopeId":1,"nodeId":0}]</b>,"jsonrpc":"2.0"}</em></p> <p>And now the Zend Server can't handle the params any more.</p> <ul> <li>I could try perhaps to hitch a customized _hitchArgs Method to the Service. But i don't know how.</li> <li>Perhaps i could also try to replace the query Method in the dojox.rpc.JsonRest with this deferred = service(id); But i don't know how.</li> </ul> <p>All these thoughts don't make me really happy and perhaps somebody has better ideas and in the best case a solution for me?</p> <p>Thanks Philipp</p> http://stackoverflow.com/questions/1888659/why-is-parent-node-for-input-element-undefined 0 why is parent node for input element undefined? Shailesh Kumar 2009-12-11T15:03:59Z 2009-12-11T15:08:03Z <p>I have a table in which I am adding some rows dynamically and in the new rows, I add one input text element. When the text in the input element changes, I wish to access the parent row and do something around it. But my code isn't able to access the parent node for input element. Following is the code sample. What is the reason for this? Is there some work around? </p> <p>The creation of row looks something like this:</p> <pre><code>var newRow = document.createElement('tr'); dojo.place(newRow, row, "after"); var td = document.createElement('td'); dojo.place(td, newRow, 'last'); dojo.attr(td, 'colspan', 2); dojo.place(document.createTextNode('Track id:'), td, 'last'); var input = document.createElement('input'); dojo.place(input, td, 'last'); dojo.attr(input, 'type', 'text'); dojo.attr(input, 'value', 0); dojo.attr(input, 'onchange', "JavaScript: onTrackIdChange(event);"); </code></pre> <p>The initial part of <code>onTrackIdChange</code> looks like:</p> <pre><code>function onTrackIdChange(event) { var textbox = event.target; console.log(textbox); // lets find the parent row var row = findParentRow(btn); </code></pre> <p>The implementation of findParentRow looks like:</p> <pre><code>function findParentRow(node) { var parent = node; do { console.log(parent); parent = parent.parentNode; } while (parent.nodeName != 'TR'); return parent; } </code></pre> <p>The findParentRow function fails since it says that parent for the input element is not defined. </p> http://stackoverflow.com/questions/1888617/dojo-connect-scope-problem 0 dojo.connect scope problem t.merlino 2009-12-11T14:57:40Z 2009-12-11T15:00:19Z <p>The followig code is inside a tag in the of a JSP. I wanted to emulate this behaviour [<a href="http://dante.dojotoolkit.org/static/xd/stack-accordion.html%5D%5B1%5D" rel="nofollow">http://dante.dojotoolkit.org/static/xd/stack-accordion.html%5D%5B1%5D</a>. The main differences from that sample are:</p> <p>1) I use e Tree to navigate contents in the StackContainer;</p> <p>2) Content are handled by dojoX.Layout.ContenPane beacuse I want to load some JSP I wrote previously.</p> <pre><code>dojo.addOnLoad(function(){ var store = new dojo.data.ItemFileReadStore({ data:{ identifier: 'id', label: 'name', items: [ { id: '01', name:'Metadata', type:'Area', children:[ {_reference:'001'}, {_reference:'002'} ] }, { id: '001', name:'Insert', type:'action', content:'content1' }, { id: '002', name:'Delete', type:'action', content:'content2' }, { id: '02', name:'Class', type:'Area', children:[ {_reference:'003'} ] }, { id: '003', name:'Create', type:'action', content:'content3'} ] } }); var treeModel = new dijit.tree.ForestStoreModel({ store: store, query: {"type": "Area"}, rootId: "root", childrenAttrs: ["children"], openOnClick: true }); var ciccio = new dijit.Tree({ model: treeModel, showRoot: false }, "treeOne"); // make the main container: var bc = new dijit.layout.BorderContainer({ style:"width:1152px; height:600px" }, "main"); // add the two regions: var accordion = new dijit.layout.AccordionContainer({ region:"left", id:"mainAccordion", style:"width:150px" }, "accordion").placeAt(bc); var stack = new dijit.layout.StackContainer({ region:"center" }, "stack").placeAt(bc); var accordion1 = new dijit.layout.AccordionPane({ title: "ciao", content: ciccio }).placeAt(accordion); [...] var content3 = new dojox.layout.ContentPane({ id: "content3", adjustPaths:true, renderStyles:true, executeScripts:true, href:"./content3.jsp" }).placeAt(stack); dojo.connect(ciccio, "onClick", function(item){ if(store.getValue(item, "type")!= 'Area') { var boh = store.getValue(item, "content"); var prova = dijit.byId(boh); stack.selectChild(prova); } else{ alert(store.getLabel(item)); } }); </code></pre> <p>bc.startup(); /<em>end dojo.AddOnLoad</em>/)};</p> <p>Ande here is the full code of the imported JSP (content3.jsp)</p> <pre><code>&lt;script type="text/javascript" src="./js/filebox/content3.js"&gt;&lt;/script&gt; &lt;div dojoType="dijit.layout.BorderContainer" id="container3" </code></pre> <p>style="width:auto; height:750px; border: 1px solid #9f9f9f;"></p> <p> <h2>Ciao!</h2> Filter: </p> <p> </p> <p></p> <p>As you can see at the top of this JSP I import a file JS Here is it:</p> <pre><code>var content3GridLayout = </code></pre> <p>[ {name : "ID", field : "idMetadataClass", width : "10%"}, {name : "Name", field : "className", width : "30%"}, {name : "Description", field : "description", width : "60%"}<br> ];</p> <pre><code>dojo.xhrPost({ </code></pre> <p>url : "./jsonListGenerator", content: {action:"classList"}, handleAs : "json", load : function(responseObject) { var content3GridStore = new dojo.data.ItemFileReadStore({data:responseObject}); content3Grid.setStore(content3GridStore);</p> <p>return responseObject; }, error : function(responseObject) { dojoAlert("Filebox admin","Internal server error"); return responseObject; } });</p> <pre><code>var lastSearchValue = ""; dojo.connect(dijit.byId(filterBox), "onKeyUp", function(el) { </code></pre> <p>if (el.explicitOriginalTarget.value!=lastSearchValue) { lastSearchValue = el.explicitOriginalTarget.value; var my_filter = "strToFilter = {className: \"<em>"+ lastSearchValue + "</em>\" }"; eval(my_filter); content3Grid.setQuery(strToFilter,{ignoreCase:true}); } });</p> <p>Everythings works perfectly except DOJO.CONNECT Infact firebugs warns that filterBox is undefined when dojo.connect tries to connet to de TextBox declared Markup way.</p> <p>This problem doesn't show if:</p> <p>1) the TextBox is declared programmaticaly in the JS file</p> <pre><code>var filterBox = new dijit.form.Textbox({...}); </code></pre> <p>2) the javascript code belonging to the filterBox is placed next the dojotype tag</p> <pre><code>&lt;div dojoType="dijit.form.TextBox" jsId="filterBox" id="filterBox"/&gt; &lt;script type="dojo/method" event="onKeyUp"&gt; if (el.explicitOriginalTarget.value!=lastSearchValue) { lastSearchValue = el.explicitOriginalTarget.value; var my_filter = "strToFilter = {className: \"*"+ lastSearchValue + "*\" }"; eval(my_filter); content3Grid.setQuery(strToFilter,{ignoreCase:true}); } &lt;/script&gt; &lt;/div&gt; </code></pre> <p>Do you know the reason why it happens? Is it a problem of scope?</p> <p>Thank you in advance!</p> <p>Teresa</p> http://stackoverflow.com/questions/1297285/which-is-the-best-esri-arcgis-component-library-to-use-with-gwt 3 Which is the best ESRI ArcGIS component library to use with GWT? Peter Kelley 2009-08-19T00:31:08Z 2009-12-11T12:22:35Z <p>We are currently designing a GIS intranet application using GWT and ESRI ArcGIS. We are looking at 2 client side Javascript libraries:</p> <ol> <li><a href="http://resources.esri.com/arcgisserver/apis/javascript/arcgis/" rel="nofollow">The ESRI Javascript API</a></li> <li><a href="http://openlayers.org/" rel="nofollow">Open Layers</a></li> </ol> <p>The library will have to support <a href="http://webhelp.esri.com/arcgisserver/9.2/dotNet/manager/publishing/static%5Fmap%5Fsvcs.htm" rel="nofollow">fused and non fused map caching</a> as well as some layers that are dynamic. <a href="http://xircles.codehaus.org/projects/gwt-openlayers" rel="nofollow">Open Layers GWT integration</a> exists but the ESRI library is based on <a href="http://www.dojotoolkit.org/" rel="nofollow">Dojo</a>.</p> <p>I'm looking for information and advice on where the gotchas will be for either approach.</p> http://stackoverflow.com/questions/1886651/query-list-of-dijit-checkboxes-inside-a-div 0 query list of dijit checkboxes inside a DIV Shailesh Kumar 2009-12-11T08:38:19Z 2009-12-11T09:12:00Z <p>I need to find all dijit.form.CheckBox widgets inside a DIV and enable/disable them all. I am not able to form appropriate query for it. </p> <p>I tried <code>dojo.query("[dojoType~=dijit.form.CheckBox]")</code> but it gives me an empty list.</p> <p>What is the appropriate query for it? Can DOJO query return a WidgetSet or does it always returns DOM ids? Is there some different way for querying dijit widgets? </p> http://stackoverflow.com/questions/1883683/how-to-update-data-in-one-row-in-dojo-grid 0 How to update data in one row in dojo grid? David Zhao 2009-12-10T20:12:40Z 2009-12-10T20:12:40Z <p>Hi there,</p> <p>I'm using dojo dataGrid (1.2.2), just wondering if there is a way for me to update data in a give row, and reflect the change in the grid without reloading the whole grid? For example, I'd like to set the 5th row column "x" from 1 to 5 console.info(thisGrid.getItem(5).i.x); //1 thisGrid.getItem(5).x = 5; ??update the row console.info(thisGrid.getItem(5).i.x); //5 and the 5th row column "x" changed to 5 Thanks in advance!</p> <p>David</p> http://stackoverflow.com/questions/1880728/propagating-events-in-dijit-layout-bordercontainer 0 Propagating events in dijit.layout.BorderContainer Linus 2009-12-10T12:39:36Z 2009-12-10T16:31:39Z <p>I've dijit BorderContainer overlaying a gfx surface which is movable (dojox.gfx.Moveable). Is there any way of disabling BorderContainer completely from catching mouse events and letting the Surface get them instead? I've been thinking of publishing the BorderContainer events to Surface, but that's seems like an overkill and might run into problems along the way.</p> http://stackoverflow.com/questions/1879047/dojo-mouseover-with-delay 0 dojo mouseover with delay Shailesh Kumar 2009-12-10T06:35:57Z 2009-12-10T12:19:16Z <p>I wish to do something like as follows:</p> <ul> <li>When the mouse goes over to some element, record it</li> <li>If the mouse stays there for 3 seconds, then execute some action <code>f()</code> for that element</li> <li>If the mouse leaves that element before 3 seconds, then the action should not be executed. </li> </ul> <p>How can I implement this delayed execution with possible cancellation? An answer using DOJO library would be nicer since I am using DOJO toolkit in my project. </p> http://stackoverflow.com/questions/1063493/dojo-crashes-ie6-when-using-zend-framework 0 dojo crashes ie6 when using Zend Framework Grant Collins 2009-06-30T12:50:11Z 2009-12-10T04:00:02Z <p>I'm having issues with a application that I am writing that uses Dojo and Zend Framework. The issue only effects Internet Explorer 6, other versions of IE, ff, chrome and safari work fine with no issues.</p> <p>When IE6 lands on the login page it crashes with the send details to microsoft dialog box. The login script uses dojo to provide some validation for the users to ensure that their passwords are formatted correctly etc.</p> <p>I've seen on some forums that addOnLoad() function call in dojo could be the cause and a window.setTimeout() would help. <a href="http://www.dojotoolkit.org/forum/dojo-core-dojo-0-9/dojo-core-support/dom-manipulation-addonload-crashes-ie6" rel="nofollow">http://www.dojotoolkit.org/forum/dojo-core-dojo-0-9/dojo-core-support/dom-manipulation-addonload-crashes-ie6</a></p> <p>The problem I have is how to manipulate the dojo header that we have in the layout.phtml in the application. We currently have in the file this code in the header.</p> <pre><code>&lt;?php $this-&gt;dojo()-&gt;setLocalPath($this-&gt;baseUrl().'/javascript/dojo/dojo.js'); $this-&gt;dojo()-&gt;addStylesheetModule('dijit.themes.tundra'); echo $this-&gt;dojo(); ?&gt; </code></pre> <p>This produces the following in the html.</p> <pre> dojo.require("dijit.form.ValidationTextBox"); dojo.require("dijit.form.Button"); dojo.require("dojo.parser"); dojo.addOnLoad(function() { dojo.forEach(zendDijits, function(info) { var n = dojo.byId(info.id); if (null != n) { dojo.attr(n, dojo.mixin({ id: info.id }, info.params)); } }); dojo.parser.parse(); }); var zendDijits = [{"id":"username","params":{"regExp":"[a-z0-9_\\+-]+(\\.[a-z0-9_\\+-]+)*@[a-z0-9-]+(\\.[a-z0-9-]+)*\\.([a-z]{2,4})$","invalidMessage":"Please enter a valid email address","trim":"true","required":"true","dojoType":"dijit.form.ValidationTextBox"}},{"id":"password1","params":{"trim":"true","lowercase":"true","regExp":"^.*(?=.{6,})(?=.*\\d)(?=.*[a-zA-Z]).*$","invalidMessage":"Invalid Password. Password must be at least 6 alphanumeric characters","required":"true","dojoType":"dijit.form.ValidationTextBox"}},{"id":"submit","params":{"label":"Login","dojoType":"dijit.form.Button"}}]; </pre> <p>How can I change this to try and add the fixes mentioned in the link, or is there another way to write this without IE6 crashing all the time?? I would prefer to fix this than remove all the client validation, just in case the client is using IE6.</p> <p>thanks...</p> http://stackoverflow.com/questions/1846927/dojo-dojo-rawxhrpost-and-dojo-xhrpost 0 Dojo dojo.rawXhrPost and dojo.xhrPost djna 2009-12-04T13:25:41Z 2009-12-09T15:31:33Z <p>My question is: can we use dojo.xhrPost to post some Json data? More detail:</p> <p>I have been experimenting with Dojo code to POST JSON data to a RESTful service. It seems to be that the behaviours of <strong>dojo.xhrPost</strong> and <strong>dojo.rawXhrPost</strong> are different, or to be more accurate rawXhrPost() works and xhrPost() does not. This is not consistent with my reading of the <a href="http://docs.dojocampus.org/dojo/rawXhrPost" rel="nofollow">docs</a></p> <blockquote> <p>The original purpose of dojo.rawXhrPost was a method that could be used to send a raw post body to the server. As of 1.3, this function is common with dojo.xhrPost(). So, for usage of dojo.rawXhrPost(), see dojo.xhrPost()</p> </blockquote> <p>Which implies that xhrPost() is enough. My code looks like this - I've got a "toy" library service that manages Editions of Books. The code wants to POST a new entry,</p> <pre><code> var myEdition = {"Edition":{"isbn":"44"}}; var xhrArgs = { url: "http://localhost:8081/LibraryWink/library/editions", postData: dojo.toJson(myEdition), handleAs: "json", headers: { "Content-Type": "application/json"}, load: function(data) { dojo.byId("mainMessageText").innerHTML = "Message posted."; }, error: function(error) { dojo.byId("mainMessageText").innerHTML = "Error :" + error; } }; var deferred = dojo.rawXhrPost(xhrArgs); </code></pre> <p>The <em>headers: { "Content-Type": "application/json"}</em> part in necessary so that my JAX-RC service understands that the content is JSON.</p> <p>What I find is that the code above works perfectly. However if instead I say:</p> <pre><code>var deferred = dojo.xhrPost(xhrArgs); </code></pre> <p>No data is transmitted in the POST. I have a TCP/IP monitor in place and can see that there is nothing transmitted.</p> <p>So, is this a bug, or am I driving xhrPost() incorrectly? Or should I use rawXhrPost()? If the latter, under what circumstances do we use the two flavours of XhrPost?</p> http://stackoverflow.com/questions/1870786/extending-dojo-gfx-group-with-default-instanciated-shapes 0 Extending dojo.gfx.Group with default instanciated shapes Linus 2009-12-09T00:10:30Z 2009-12-09T00:10:30Z <p>I'm attempting to create some simple UI components with dojo.gfx. I've managed to extend dojo.gfx.Group, but am out of my depth getting any of the default shapes drawn to the surface. Inspecting the rendered SVG in Firebug, there's rightfully a node but no rect. </p> <p>The simplified class looks like this:</p> <pre><code>dojo.provide("gfxui.SimpleButton"); dojo.require("dojox.gfx.shape");//-¿ needed? dojo.require("dojox.gfx.svg"); dojo.require("dojox.gfx._base"); dojo.declare("gfxui.SimpleButton", dojox.gfx.Group, { constructor: function(){ this.draw(); }, draw:function(){ var bg = this.createRect(this.rect_props); //var bg = this.createObject(dojox.gfx.Rect); } } gfxui.SimpleButton.nodeType = dojox.gfx.Group.nodeType; dojo.extend(dojox.gfx.Surface, { createButton: function(){ var button = this.createObject(gfxui.SimpleButton, null, true); this.add(button); return button; } }); </code></pre> <p>And the javascript in the HTML looks like this:</p> <pre><code>dojo.require("dojox.gfx"); dojo.require("gfxui.SimpleButton"); function init(){ var g = dojox.gfx; var surface = dojox.gfx.createSurface(dojo.byId("gfx_holder"), 800, 280, "#eee"); var button = container.createButton(); }; dojo.addOnLoad(init); </code></pre> http://stackoverflow.com/questions/1558841/how-to-include-dojox-gfx-svg-and-dojox-gfx-vml-in-a-custom-dojo-build-with-cross 0 How to include dojox.gfx.SVG and dojox.gfx.VML in a custom Dojo build with cross-browser support? Wolfram 2009-10-13T08:14:55Z 2009-12-08T23:40:28Z <p>Hello everyone.</p> <p>I am using <em>dojo.gfx</em> to create vector shapes and text on my website and everything works fine when I am "dojo.require"-ing all dependencies in my Javascript. But when I'm building everything I need in a custom build (especially <em>dojox.gfx</em>, <em>dojox.gfx.svg</em> and <em>dojox.gfx.vml</em>), Dojo's automatic differentiation for SVG-supporting browsers and IEs (VML) seems to be breaking.</p> <p>If I include only dojox.gfx.svg, IE breaks (see below), if I add dojox.gfx.vml, my scripts stop working in Firefox.</p> <p>In IE, the scripts break in the following line of my custom dojo build saying "Object doesn't support property or method":</p> <pre><code>*s.rawNode = _createElementNS(svg.xmlns.svg, "svg");* </code></pre> <p>with _createElementNS being commented with "Internal helper to deal with creating elements that are namespaced. Mainly to get SVG markup output working on IE.".</p> <p>Right know, I exclude both SVG and VML in my dojo build profile and let dojo xhrGet the rest. This works but requires three more requests (svg.js, shape.js, path.js, although the latter two are included in my build).</p> <p>What do I need to include in my build to make Vector shapes working in all browsers "out-of-the-box"?</p> <p>This is my build profile which works but requires the additional three requests (so neither svg nor vml are included explicitly):</p> <pre><code>dependencies ={ layers: [ { name: "mybuild-dojo.js", dependencies: [ "dojo.fx", "dojox.gfx", "dojox.gfx.shape", "dojox.gfx.path", "dojox.gfx.VectorText", "dojox.xml.DomParser", "dojox.image.Lightbox", "dojo.parser" ] } ], prefixes: [ [ "dijit", "../dijit" ], [ "dojox", "../dojox" ], ] </code></pre> <p>};</p> <p>Thank you for your answer.</p> http://stackoverflow.com/questions/1841953/struts2-back-button-and-linking 0 Struts2 back button and linking Trick 2009-12-03T18:35:47Z 2009-12-08T15:30:40Z <p>Hello!</p> <p>I am using Struts 2.1.6 with Dojo plugin, whole app has ajax links (sx:a). </p> <p>Did anybody succeed to implement back button functionality and linking to certain content? </p> <p>Does anybody have any experience how to implement? I am planning to implement (if there is no good solution already) something like so:</p> <ul> <li>changing address bar link (adding parameters) with js which I can then read and get proper content and then publish it with notifyTopics.</li> </ul> <p>Or should I just change whole app to use jQuery plugin? Do jQuery has good solutions for back button and linking on ajax pages?</p> <p><strong>EDIT:</strong> I found a solution and I am developing it, I will post the answer this week.</p> http://stackoverflow.com/questions/1856116/how-to-filter-query-date-using-dojox-jsonpath-query 1 how to filter / query date using dojox.jsonPath.query zoom_pat 2009-12-06T18:18:16Z 2009-12-07T15:54:18Z <p>I am referring to use <a href="http://www.sitepen.com/blog/2008/03/17/jsonpath-support/" rel="nofollow">http://www.sitepen.com/blog/2008/03/17/jsonpath-support/</a></p> <p>This is what I am doing (spent two days but no luck): first drawing a datagrid with integer column and a date column and also able to sort the columns values by clicking on the column header..</p> <p>now using dojox.jsonPath.query to query numbers using syntax like </p> <pre><code> jsonStore = new dojox.jsonPath.query(object,"[?(@.+ field1 &gt; 500)]");//works fine </code></pre> <p>(using jsonStore to redraw the grid).. everything works fine till now.</p> <p>But now trying to filter out dates on the other column for dojo datagrid using jsonPath.</p> <pre><code>var dt = new Date(); jsonStore = new dojox.jsonPath.query(object,"[?(@.effectiveDate&lt;" + dt + ")]");// does not work // I am trying to get the rows of the grid which have effectiveDate date less // than cuurent date or any other passed 'javascript date object' layout = [{"field":"field1","name":"field1"},{"type":dojox.grid.cells.DateTextBox,"field":"effectiveDate","name":"effectiveDate","formatter":formatDate}]; </code></pre> <p>where effectiveDate is the field for the layout of dojo datagrid. but the above does not work and throws following error "jsonPath: missing ; before statement: _v.effectiveDate <p>How shall i use jsonPath to query date, or my syntax is just wrong?</p> <p>Is there a way we could use dojox.jsonPath.query or dojox.json.query to query date objects in the json object using &lt;, &lt;=, >=, = operators....??</p> <p>Any help ?</p> http://stackoverflow.com/questions/1300174/how-to-update-a-dojo-grid-cell-value-using-a-tooltipdialog-and-dropdownbutton 0 How to update a Dojo Grid cell value using a TooltipDialog (and DropDownButton) Harel 2009-08-19T14:05:07Z 2009-12-07T05:00:02Z <p>I have a dojo grid which is using some editable dijit form fields. All is well, until I try ot implement an country (multi) select cell as an Tooltip Dialog; i.e., show a drop down button which opens the tooltip dialog populated with a checkbox array to select one or more country. Once checked and clicked OK, the cell should update with a list of selected countries. Obviously I'll take care of updating the server via the store later on. </p> <p>I've implemented a country select tooltip dialog which works fine like so:</p> <pre><code>dojo.provide("CountrySelector"); dojo.declare( "CountrySelector", [dijit.form.DropDownButton], { label: 'Countries', dropDown: new dijit.TooltipDialog({ execute: function() { console.log("EXECUTE : ", arguments[0]); this.value = arguments[0].country; }, href:'/cm/ui/countries' }), postCreate: function() { this.inherited(arguments); this.label = this.value; dojo.connect(this.dropDown, 'onClose', function() { console.log('close'); }); console.log("CountrySelect post create", this); }, } ); </code></pre> <p>And the grid cell is typed as:</p> <pre><code>{ name: 'Countries', field: 'targeting.countries', editable: true, hidden: false, type:dojox.grid.cells._Widget, widgetClass: CountrySelector }, </code></pre> <p>All is working fine but I can't figure out how to update cell's content and store once the widget is executed. As well, I don't seem to have the row id of the updated row. </p> <p>Any ideas? </p> <p>Thanks, Harel</p> http://stackoverflow.com/questions/1846731/how-to-raise-a-global-event-in-dojo 0 How to raise a global event in dojo? the_drow 2009-12-04T12:41:22Z 2009-12-05T22:52:57Z <p>Hello, I am trying to raise an event to all of the widgets that catch it.<br> I have an authentication widget and other widgets that depeand on the fact that the user is logged in.<br> I would like to raise an event to all of those widgets when a user is logged in without connecting them manually.<br> How can it be done? </p> <p>Thanks in advnace,<br> Omer.</p> http://stackoverflow.com/questions/1850050/how-to-get-the-value-of-a-select-in-dojo 0 How to get the "value" of a <select> in dojo? mctom987 2009-12-04T22:22:57Z 2009-12-05T19:49:30Z <p>I am using dijit.form.FilteringSelect to provide a way to select values from a . The problem is, when using dojo, the label is returned instead of the value of the s.</p> <p>For example:<br /> <code>&lt;select name="test" dojoType="dijit.form.FilteringSelect"&gt;<br /> &lt;option value="1"&gt;One&lt;/option&gt;<br /> &lt;option value="2"&gt;Two&lt;/option&gt;<br /> &lt;/select&gt;</code><br /> Dojo is returning the literal "one" if that option is selected, instead of the value for that option, "1". The same is true for "two" and "2".</p> <p>If dojo is removed from this element, the value is returned as expected.</p> http://stackoverflow.com/questions/659084/triggering-invalid-message-with-zenddojo-elements-on-post-fail 0 triggering invalid message with zend_dojo elements on post fail. Grant Collins 2009-03-18T16:39:55Z 2009-12-05T15:00:03Z <p>Hi,</p> <p>I am having a few issues with a Zend_Form that I have which uses Dojo elements to handle user validation. </p> <p>The scenario is when are user fills in the form the dojo elements ensure the formatting is correct. On post of the form if there is an error such as the email address already existing in the database, my code throw an exception that I catch, I want to then use the dojo validation to display the error rather than having error messages at the top or bottom of the form.</p> <p>I've tried the following:</p> <pre><code>catch(Exception $e){ $signupForm-&gt;populate($formData); $signupForm-&gt;getElement('email')-&gt;setInvalidMessage('email addresss already exists'); $this-&gt;view-form = $signupForm; } </code></pre> <p>This redisplays the form but does not highlight the dojo element to show what element is failing. How can this be done or am I going to have to display the error messages somewhere on the form in an list?</p> <p>Any help would be gratefully received.</p> http://stackoverflow.com/questions/1836008/cant-select-text-in-input-box-on-ie 0 Can't select text in input box on IE Michael 2009-12-02T21:40:52Z 2009-12-03T23:50:19Z <p>I have an input box that is inside of a div, the div has a background image and the input box inside of it is positioned and limited in size / font to work nicely with the background image. In FF everything works as expected, in IE though there is a major issue. I can't select the text inside of the input box using the mouse or use short-cuts like shift-end/home, ctrl-left/right. You can move around using the mouse keys and use the delete/backspace keys to adjust the text. The HTML looks something like this:</p> <pre><code>&lt;div class='my_container'&gt; &lt;input type='text' name='my_text_input' class='my_input' /&gt; &lt;/div&gt; </code></pre> <p>Any insight would be greatly appreciated. </p> <p>I would like to add some more information, i'm attaching a Dojo dnd Target to the outside div. If I don't attach the dnd then I can do the selection, once i've attached the dnd, i can't select the text anymore. </p> http://stackoverflow.com/questions/1828670/how-to-make-a-scrollable-clickable-list-of-items-in-dojo 0 How to make a scrollable, clickable list of items in Dojo? Ryan 2009-12-01T20:26:40Z 2009-12-03T02:15:16Z <p>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.</p> <p>Basically, I have a UI with a list of categories on the left, and then a list of data on the right. </p> <p>So say there are 20 categories and each one has 20 items in it. I want to be able to click on a category and then display the appropriate list on the right.</p> <p>But I don't see a Container that just holds a list of ContentPanes. My gut feeling is that the layout should be:</p> <ul> <li>BorderContainer: <ul> <li>leading: ???Container</li> <li><ul> <li>1 ContentPane per category</li> </ul></li> <li>center: ???Container</li> <li><ul> <li>1 ContentPane per item in selected category.</li> </ul></li> </ul></li> </ul> <p>But I have no idea what that ???Container should be.</p> <p>Some options I've thought of:</p> <ul> <li><p>Using a dojox.Tree for the Categories. Not ideal, since my categories aren't heirarchical, and I'd have to alter the CSS to hide the +/- and lines.</p></li> <li><p>Using a diji.Menu for the categories. Close, but I want to highlight the selected category, and it doesn't feel like Menus are made for that.</p></li> <li><p>Building my own _Container subclass. Seems doable, but is that really necessary?</p></li> <li><p>Using Templated Widgets. Seems maybe the best approach I've found, but I'm unclear if that's really what I want to do.</p></li> </ul> <p>So, any advice would be greatly appreciated.</p> http://stackoverflow.com/questions/1829732/overriding-dijit-validator-function-and-using-regexp-attribute 0 Overriding dijit validator function and using regExp attribute Adam 2009-12-01T23:40:31Z 2009-12-02T18:41:22Z <p>I'm new to dojo and could really use some help with the following 2 field validation examples.</p> <p>In the following example of a dijit.form.ValidationTextBox field specifying the validator property seems to override the use of the regExp. (ie the field no longer adheres to the regExp rule). How to I make it do both?</p> <p><code>&lt;input dojoType="dijit.form.ValidationTextBox"<br> type="password"<br> name="password2"<br> id="password2"<br> maxLength="50"<br> trim="true"<br> regExp="[\w]+"<br> required="true"<br> validator="return this.value == dijit.byId('password').value"<br> invalidMessage="Confirmation password must match password" /&gt;</code></p> <p>I have another similar example where one field depends on the value of another, but I don't have the syntax correct.</p> <p><code>&lt;input dojoType="dijit.form.ValidationTextBox" type="text"<br> name="homePhone"<br> id="homePhone"<br> style="width:20%"<br> maxLength="10"<br> trim="true"<br> required="false"<br> regExp="[\d]{10}"<br> validator="return (dijit.byId('preferredContactMethod').value == "home") &amp;&amp; (this.value != null)"<br> invalidMessage="Home phone required (ie. 9198887777)"<br> /&gt;</code></p> http://stackoverflow.com/questions/1829544/dojo-datagrid-filtering-issue 0 Dojo Datagrid Filtering Issue Zoom Pat 2009-12-01T22:58:10Z 2009-12-02T13:45:51Z <p>Hello All, I am having hard time filtering a datagrid. Please help!</p> <p>This is how I draw a grid.</p> <pre><code> var jsonStore = new dojo.data.ItemFileWriteStore({data:columnValues}); gridInfo = { store: jsonStore, queryOptions: {ignoreCase: true}, structure: layout }; grid = new dojox.grid.DataGrid(gridInfo, "gridNode"); grid.startup(); </code></pre> <p>Now if i try something like this, it works fine and gives me the rows which has the column (AGE_FROM) value equal to 63. grid.filter({AGE_FROM:63});</p> <p>but I need all kinds of filtering and not just 'equal to'</p> <p>So how do I try to obtain all the rows which have AGE_FROM > 63, and &lt; 63 and &lt;= 63 and >=63. because grid.filter({AGE_FROM:&lt;63}); does not work</p> <p>Also One other way I was thingking was to use the following filteredStore = new dojox.jsonPath.query(filterData,"[?(@.AGE_FROM >= 63]");</p> <p>and then draw the grid with the filteredStore, but the above is not working for a != operator. Once I figure a good way to filter grid I need to see a way to filter out dates.</p> <p>I am trying to find a good example for filtering dataGrid but most of the examples are just filtering based on the 'equal to' criteria.</p> <p>Any help is highly appreciated.</p> <p>Thanks,</p> http://stackoverflow.com/questions/1089821/dijit-widgets-dont-initialize-if-they-are-programatically-created-on-ie6 0 Dijit widgets don't initialize if they are programatically created on IE6. unknown (google) 2009-07-07T00:22:51Z 2009-12-01T02:41:40Z <p>I'm using the classical JavaScript way (programatically) to instantiate dijit widgets with dojo-1.3.1, it works OK in Firefox but in IE wont initialize the widgets and it doesn't throw any error.</p> <p>My source code for this is:</p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;title&gt;...&lt;/title&gt; &lt;script type="text/javascript" src="lib/dojo/dojo/dojo.js" djconfig="parseOnLoad:true, isDebug: true"&gt;&lt;/script&gt; &lt;script&gt; dojo.require("dijit.form.DropDownButton"); dojo.require("dijit.Dialog"); dojo.require("dijit.form.Button"); dojo.addOnLoad(function(){ var addFormTooltip = new dijit.TooltipDialog({ title: "Add a new person", execute: function(arguments){ console.debug("Add \"New Person\" Form Tooltip Execute."); } }, "add_form_tooltip"); var tooltipOkButton = new dijit.form.Button({ name: "ok", type: "submit" }, "tooltip_ok_button"); var addDropDownButton = new dijit.form.DropDownButton({ title: "Add new person", label: "Add", dropDown: addFormTooltip // refers to addFormTooltip variable },"add_button"); }); &lt;/script&gt; &lt;/head&gt; &lt;body&gt; &lt;div id="add_button"&gt;&lt;/div&gt; &lt;div style="display:none"&gt; &lt;div id="add_form_tooltip"&gt; &lt;!-- Tooltip content --&gt; &lt;span&gt;Hello world&lt;/span&gt; &lt;button id="tooltip_ok_button"&gt;OK&lt;/button&gt; &lt;/div&gt; &lt;/div&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>Did I miss something?</p> <p>I tried the descriptive method and it works on both Browsers, so it must be something with this code or with my IE browser I think.</p> http://stackoverflow.com/questions/1821051/autocomplete-in-dojo-using-a-textbox-as-opposed-to-a-dropdown 0 Autocomplete in Dojo using a textbox as opposed to a dropdown. ferrari fan 2009-11-30T17:00:40Z 2009-12-01T02:37:42Z <p>Dojo's Autocomplete widget requires that I have a dropdown to start off with. Is there a way to create an autocomplete box in Dojo which starts out with a textbox like YUI's? I'm trying to use Dojo because that's what we use here in the project, also trying to modify existing JSP pages to have autocomplete. These pages don't have the fields as dropdowns (ie "select")</p> http://stackoverflow.com/questions/1816925/jquery-vs-dojo-vs-extjs 1 JQuery vs Dojo vs ExtJS [closed] JMSA 2009-11-29T21:58:50Z 2009-12-01T01:00:21Z <blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="http://stackoverflow.com/questions/394601/which-javascript-framework-jquery-vs-dojo-vs">Which Javascript framework (jQuery vs Dojo vs &hellip; )?</a> </p> </blockquote> <p>I have very short time to learn any JavaScript framework.</p> <p>Considering the all-in-one solution factor, WebDevelopment-market and availability of written-books, Which should I learn JQuery or Dojo or ExtJS?</p> http://stackoverflow.com/questions/1782438/measure-page-rendering-time-on-ie-6-or-ff-3-x 0 measure page rendering time on IE 6 or FF 3.x Ryan Fernandes 2009-11-23T11:04:50Z 2009-11-30T23:17:57Z <p>I have a page constructed using Dojo and I need to measure how long the page takes to complete rendering on my browser (NOT time-to-first-byte, or time-to-last-byte).</p> <p>In other words, the page (all bytes) might get downloaded to my broswer but the components I'm using (eg. calendar, grid etc) might still initialize and render long after the complete page has been downloaded.</p> <p>Are there any tools that would allow me to measure when the page and all its components have completely rendered, reliably?</p> http://stackoverflow.com/questions/1820228/dojo-layers-best-practice 0 Dojo Layers best practice piddl0r 2009-11-30T14:45:37Z 2009-11-30T19:37:39Z <p>My current project has a small user base and nearly all clients will be on the same LAN as the webserver so performance won't really be hindered but I'm a sucker for picking up bad habits so I want to get used to doing it right.</p> <p>I was thinking make a generic 'site' layer which would include the commonly used requires (mainly form, dialog &amp; grid) and add the other components (such as charts) when required, even though the grid for example may not be required for every page. I would only have one layer to maintain at way but each request is going to be bigger.</p> <p>Is it considered better to have one request with a slightly bloated layer or a couple of requests with a couple of small layers?</p> <p>I hope this isn't too subjective 0_o</p> http://stackoverflow.com/questions/1821605/does-jquery-have-the-equivalent-of-dojos-enhanced-select 0 Does jQuery have the equivalent of Dojo's enhanced <select>? Aaron F. 2009-11-30T18:41:45Z 2009-11-30T18:49:13Z <p>Dojo has this: <a href="http://download.dojotoolkit.org/release-0.4.3/dojo-0.4.3-widget/tests/widget/test%5FSelect.html" rel="nofollow">http://download.dojotoolkit.org/release-0.4.3/dojo-0.4.3-widget/tests/widget/test%5FSelect.html</a></p> <p>Similar to Google Auto-suggest.</p> <p>Does jQuery have anything similar?</p> http://stackoverflow.com/questions/394601/which-javascript-framework-jquery-vs-dojo-vs 41 Which Javascript framework (jQuery vs Dojo vs ... )? cletus 2008-12-27T03:02:59Z 2009-11-30T18:09:40Z <p>There are a few Javascript frameworks/toolets out there, such as:</p> <ul> <li><a href="http://jquery.com/" rel="nofollow">jQuery</a>;</li> <li><a href="http://dojotoolkit.org/" rel="nofollow">Dojo</a>;</li> <li><a href="http://www.prototypejs.org/" rel="nofollow">Prototype</a>;</li> <li><a href="http://developer.yahoo.com/yui/" rel="nofollow">YUI</a>;</li> <li><a href="http://mootools.net/" rel="nofollow">MooTools</a>;</li> <li><a href="http://extjs.com/" rel="nofollow">ExtJS</a>;</li> <li><a href="http://www.smartclient.com/" rel="nofollow">SmartClient</a>; and</li> <li>others I'm sure.</li> </ul> <p>It certainly seems that jQuery is ascendant in terms of mindshare at the moment. For example, <a href="http://blog.jquery.com/2008/09/28/jquery-microsoft-nokia/" rel="nofollow">Microsoft (ASP.NET MVC) and Nokia will use it</a>. I also found this <a href="http://blog.creonfx.com/javascript/dojo-vs-jquery-vs-mootools-vs-prototype-performance-comparison" rel="nofollow">this performance comparison of Dojo, jQuery, MooTools and Prototype</a> (Edit: <a href="http://blog.creonfx.com/javascript/mootools-vs-jquery-vs-prototype-vs-yui-vs-dojo-comparison-revised" rel="nofollow">Updated Comparison</a>), which looks highly favourable to Dojo and jQuery.</p> <p>Now my previous experience with Javascript has been the old school HTML + Javascript most of us have done and RIA frameworks like <a href="http://code.google.com/webtoolkit/" rel="nofollow">Google Web Toolkit</a> ("GWT") and <a href="http://extjs.com/products/gxt/" rel="nofollow">Ext-GWT</a>, which were a fairly low-stress entry into the Ajax world for someone from a Java background, such as myself.</p> <p>But, after all this, I find myself leaning towards the more PHP + Ajax type solution, which just seems that much more lightweight.</p> <p>So I've been looking into jQuery and I really like it's use of commands, the use of <a href="http://ayende.com/Blog/archive/2007/07/18/Fluent-Interfaces-amp-Method-Chaining.aspx" rel="nofollow">fluent interfaces and method chaining</a>, it's cross-browser CSS selector superset, the fact that it's lightweight and extensible, the brevity of the syntax, <a href="http://www.onlinetools.org/articles/unobtrusivejavascript/" rel="nofollow">unobtrusive Javascript</a> and the plug-in framework. Now obviously many of these aren't unique to jQuery but on the basis that some things are greater than their sum of parts, it just seems that it all fits together and works well.</p> <p>So jQuery seems to have a lot going for it and it looks to the frontrunner for what I choose to concentrate on. Is there anything else I should be aware of or any particular reasons not to choose it or to choose something else?</p> <p><strong>EDIT:</strong> Just wanted to add this <a href="http://www.google.com/trends?q=jquery%2Cdojo%2Cmootols%2Cyui%2Cextjs" rel="nofollow">trend comparison of Javascript frameworks</a>.</p> http://stackoverflow.com/questions/1812682/tabcontainer-behaves-different-from-browser-to-browser 1 Tabcontainer behaves different from browser to browser RooseH 2009-11-28T14:51:48Z 2009-11-30T14:40:50Z <p>The following code works on IE8, Safari 4.0.2 - but generates an empty page on Firefox 3.5.5. Any idea ?</p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;link rel="stylesheet" type="text/css" href="http://archive.dojotoolkit.org/nightly/dojotoolkit/dijit/themes/tundra/tundra.css"&gt; &lt;/head&gt; &lt;body class="tundra"&gt; &lt;div style="width: 350px; height: 300px"&gt; &lt;div id="tc1-prog"&gt; &lt;/div&gt; &lt;/div&gt; &lt;/body&gt; &lt;script type="text/javascript" src="http://archive.dojotoolkit.org/nightly/dojotoolkit/dojo/dojo.js" djConfig="parseOnLoad: true"&gt;; &lt;/script&gt; &lt;script type="text/javascript"&gt; dojo.require("dijit.layout.TabContainer"); dojo.require("dijit.layout.ContentPane"); dojo.addOnLoad(function() { var tc = new dijit.layout.TabContainer({ style: "height: 100%; width:100%;" }, "tc1-prog"); var cp1 = new dijit.layout.ContentPane({ title: "Food", content: "We offer amazing food" }); tc.addChild(cp1); var cp2 = new dijit.layout.ContentPane({ title: "Drinks", content: "We are known for our drinks." }); tc.addChild(cp2); tc.startup(); }); &lt;/script&gt; &lt;/html&gt; </code></pre>