<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel about="http://permalink.gmane.org/gmane.comp.web.dojo.user">
    <title>gmane.comp.web.dojo.user</title>
    <link>http://permalink.gmane.org/gmane.comp.web.dojo.user</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.dojo.user/32977"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.dojo.user/32976"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.dojo.user/32975"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.dojo.user/32974"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.dojo.user/32973"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.dojo.user/32972"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.dojo.user/32971"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.dojo.user/32970"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.dojo.user/32969"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.dojo.user/32968"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.dojo.user/32967"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.dojo.user/32966"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.dojo.user/32965"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.dojo.user/32964"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.dojo.user/32963"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.dojo.user/32962"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.dojo.user/32961"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.dojo.user/32960"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.dojo.user/32959"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.dojo.user/32958"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.dojo.user/32977">
    <title>Re: Large Dojo Application Design</title>
    <link>http://permalink.gmane.org/gmane.comp.web.dojo.user/32977</link>
    <description>Hi, Matthew,

I'm in the midst of a large project facing similar design issues as
yours, and I think we've come up with solutions to large parts of the
problem.

The code is a mess, since I don't have that much time to work on it, and
I've switched toolkits a few times since the beginning... but it is in a
public SVN repository here: https://baker.freelock.com/svn/auriga ;
there's a demo at http://demo.freelock.com (follow the Project Auriga
link). There's also more documentation at http://projectauriga.org.

I have switched to git for repository management, and being able to
manage dojo builds in source control is one of the key reasons. I
haven't published a git repo yet, because I accidentally committed a
password I use on dozens of machines, and git is VERY good at not
forgetting anything ;-) We're also going to be rebuilding that demo
server soon. So the codebase in SVN is a couple months behind our
current development, though we are using the head of that trunk in
production right now. (if you want to </description>
    <dc:creator>John Locke</dc:creator>
    <dc:date>2008-08-29T16:51:36</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.dojo.user/32976">
    <title>How to create a Editor programmatically?</title>
    <link>http://permalink.gmane.org/gmane.comp.web.dojo.user/32976</link>
    <description>_______________________________________________
FAQ: http://dojotoolkit.org/support/faq
Book: http://dojotoolkit.org/docs/book
Forums: http://dojotoolkit.org/forum
Dojo-interest&lt; at &gt;dojotoolkit.org
http://turtle.dojotoolkit.org/mailman/listinfo/dojo-interest
</description>
    <dc:creator>hawk gao</dc:creator>
    <dc:date>2008-08-29T16:07:45</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.dojo.user/32975">
    <title>dojo.body() is null or not an object</title>
    <link>http://permalink.gmane.org/gmane.comp.web.dojo.user/32975</link>
    <description>
Hey..

I am getting dojo.body() is null or not an object error and the dijit tree
is not getting generated.
the code for generating the tree is:

var myFunction=Function()
{

var myTreeObject=&lt;%=treeJsonString%&gt;;
var store1=new dojo.data.ItemFileReadStore({data:myTreeObject});

//Generating the tree programmatically

var _tree=new dijit.Tree({
id:'assetsTree',
                store:store1,
                query:{type:'Group'},
                labelAttr:"name",
                typeAttr:"type"},dojo.byId("assetsTree"));

//var request = store1.fetch({query: {type:"Group"}, onComplete:
gotContinents});
alert("myTreeModel loaded");
dojo.body().appendChild(assetsTree.domNode);
}
function openNode(message){
        var node=message.node;
        if(message.event!="toggleOpen")return;
       
        console.log('click');
}
dojo.subscribe("tree",null,"openNode");
dojo.addOnLoad(myFunction);


Can any one please tell me if i am missing anything..


Thanks
</description>
    <dc:creator>Tapan Ghia</dc:creator>
    <dc:date>2008-08-29T12:23:07</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.dojo.user/32974">
    <title>Fw: Templated Widgets, Dojo and DWT</title>
    <link>http://permalink.gmane.org/gmane.comp.web.dojo.user/32974</link>
    <description>_______________________________________________
FAQ: http://dojotoolkit.org/support/faq
Book: http://dojotoolkit.org/docs/book
Forums: http://dojotoolkit.org/forum
Dojo-interest&lt; at &gt;dojotoolkit.org
http://turtle.dojotoolkit.org/mailman/listinfo/dojo-interest
</description>
    <dc:creator>Gaurav Vaish</dc:creator>
    <dc:date>2008-08-29T09:50:28</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.dojo.user/32973">
    <title>Re: dojo.cookie.isSupported() not working in IE 6</title>
    <link>http://permalink.gmane.org/gmane.comp.web.dojo.user/32973</link>
    <description>Andreas Hartmann schrieb:

I filed a bug report:

http://bugs.dojotoolkit.org/ticket/7533

The problem is that navigator.cookieEnabled always returns true in 
certain versions of IE 6. Since many others experienced the same issue 
(there are many forum threads on the web), I have the feeling that this 
property is not reliable.

Does it make sense to add a workaround to the codebase? Of course I 
understand that the dev's aren't very inclined to clutter the code 
unnecessarily as long as I'm the only one who complains … :)

</description>
    <dc:creator>Andreas Hartmann</dc:creator>
    <dc:date>2008-08-29T09:29:05</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.dojo.user/32972">
    <title>Re: Cannot collapse dijit.Tree [SOLVED]</title>
    <link>http://permalink.gmane.org/gmane.comp.web.dojo.user/32972</link>
    <description>The dijit.Tree insists on always showing the top-level children
(rootNode is expanded). It seems that the 'persist' functionality which
saves the tree state, ignores the state of the rootNode. 

Collapsing the rootNode after load, is difficult, since there is no way
of knowing when the rootNode is ready for use. 
Loading the rootNode happens at some point AFTER the page has loaded, so
addOnLoad is not an option.

In any case, collapsing after load is ugly, since all the top-level
children will display briefly and then disappear.

I really did not want to mess with Tree.js, but I realized there was no
way around it:

---------------------------------------------
dojo.declare(
   "dijit.Tree",
   [dijit._Widget, dijit._Templated],
 {
[...]
   _load: function(){
[...]
         // load top level children
+        if(this.tree.persist){
           this._expandNode(rn);
+        }
---------------------------------------------

This way the rootNode isn't expanded, unless persist is set to true.
(If you make this c</description>
    <dc:creator>Jette Derriche</dc:creator>
    <dc:date>2008-08-29T08:38:47</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.dojo.user/32971">
    <title>[Q] How can I use Declarative widget, but constuctor arg -- programmatically</title>
    <link>http://permalink.gmane.org/gmane.comp.web.dojo.user/32971</link>
    <description>I am trying to 'concuct'
an approach where

I want to declare a dojox.DataGrid declartively
but whant to specify the 'query' and 'structure'
arguments programmatically (because I cannot figure
out how to specify them declaratively,when there lots of options);

So I am using &lt;script="dojo/method"&gt;  to 
'initialize' things -- because apparently it is being invoked
after the widget is constructed but 'before' it is being rendered.

But that for some reason is not working (or may be it is not supposed to
work)
So need some help.
------------------------------------------------

&lt;table style="font-size:auto;" id="grid" 
dojoType="dojox.grid.DataGrid" jsId="grid" rowSelector="20px" 
&lt;script type="dojo/method"&gt;                     
gridLayout = {
defaultCell: { width: 8, editable: true, styles: 'text-align: right;'  },
cells: [
{ name: 'Id', width: 3, field: 'id' },
{ name: 'Priority', field: 'col1', styles: 'text-align: center;', type: dojox.grid.cells.Select, options: ["normal", "note", "impo</description>
    <dc:creator>V S P</dc:creator>
    <dc:date>2008-08-29T08:15:59</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.dojo.user/32970">
    <title>Re: Re Asked: How to update/refresh the (display of a) tree widget?</title>
    <link>http://permalink.gmane.org/gmane.comp.web.dojo.user/32970</link>
    <description>
This is how I finally did it (maybe it helps someone?):

function reloadTree(tree){
    
    // Rebuild store
    var storeurl = tree.store._jsonFileUrl;
    var newStore = new dojo.data.ItemFileReadStore({url: storeurl});
    
    // Destroy and rebuild tree
    var treeLabel = tree.label;
    var treeId = tree.id;
    var containerID = tree.domNode.parentNode.id;
    var treeClass = tree["class"];
    var treeQuery = tree["query"];
    var treeLabelAttr = tree["labelAttr"];
    var customIconMethod = tree.getIconClass
    tree.destroyRecursive(true);
    
    var newTree = new dijit.Tree( 
        {
            "store":        newStore,
            "label":        treeLabel,
            "id":           treeId,
            "class":        treeClass,
            "query":        treeQuery,
            "labelAttr":    treeLabelAttr,
            "getIconClass": customIconMethod
        }, 
        document.createElement(treeId) );
    
    dojo.byId(containerID).appendChild(newTree.domNode); 
}




lukess wrot</description>
    <dc:creator>theKryz</dc:creator>
    <dc:date>2008-08-29T05:48:01</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.dojo.user/32969">
    <title>Re: [Q] dojox DataGrid misbehaving on IE7 (dojo pre 1.2)</title>
    <link>http://permalink.gmane.org/gmane.comp.web.dojo.user/32969</link>
    <description>just to follow up
if anybody is running into the same issue


I created a ticket on this
http://bugs.dojotoolkit.org/ticket/7554

Because I spent a few hours and was able to recreate it with
dojox's test suit itself (so that eliminated my worry that I did
something wrong)
(on SVN-trunk as of 8/24)



On Thu, 28 Aug 2008 04:43:58 -0400, "V S P" &lt;toreason&lt; at &gt;fastmail.fm&gt; said:
</description>
    <dc:creator>V S P</dc:creator>
    <dc:date>2008-08-29T01:49:06</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.dojo.user/32968">
    <title>Re: How to add multiple lines to textarea</title>
    <link>http://permalink.gmane.org/gmane.comp.web.dojo.user/32968</link>
    <description>
Thanks Peter, that fixed the issue for me... Cheers,

Chris



Peter E Higgins-2 wrote:

</description>
    <dc:creator>Chris Fleischmann</dc:creator>
    <dc:date>2008-08-28T22:49:33</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.dojo.user/32967">
    <title>Re: How to add multiple lines to textarea</title>
    <link>http://permalink.gmane.org/gmane.comp.web.dojo.user/32967</link>
    <description>
.attr() on Dijit objects will not be available until 1.2 (or if you are
using a recent nightly) .. Assuming Dijit/Dojo 1.1 and
dijit.form.TextArea, you probably want .setValue:


Tested in the page available at:
http://download.dojotoolkit.org/release-1.1.1/dojo-release-1.1.1/dijit/tests/form/test_Textarea.html

Regards,
Peter Higgins

(note, in 1.2 it will be .attr('value', "one\ntwo\nthree"), and setValue
will throw a deprecation warning)

Chris Fleischmann wrote:

_______________________________________________
FAQ: http://dojotoolkit.org/support/faq
Book: http://dojotoolkit.org/docs/book
Forums: http://dojotoolkit.org/forum
Dojo-interest&lt; at &gt;dojotoolkit.org
http://turtle.dojotoolkit.org/mailman/listinfo/dojo-interest

</description>
    <dc:creator>Peter E Higgins</dc:creator>
    <dc:date>2008-08-28T22:15:51</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.dojo.user/32966">
    <title>Re: How to add multiple lines to textarea</title>
    <link>http://permalink.gmane.org/gmane.comp.web.dojo.user/32966</link>
    <description>
Yes agree, I simply tried both to no avail... ie., both returned not a
function.

dijit.byId("t_textA").attr is not a function
dojo.byId("t_textA").attr is not a function

Regards,

Chris



PeterAnsell wrote:

</description>
    <dc:creator>Chris Fleischmann</dc:creator>
    <dc:date>2008-08-28T22:09:57</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.dojo.user/32965">
    <title>Re: How to add multiple lines to textarea</title>
    <link>http://permalink.gmane.org/gmane.comp.web.dojo.user/32965</link>
    <description>
----- "Chris Fleischmann" &lt;chris.fleischmann&lt; at &gt;sun.com&gt; wrote:


Dojo.byId returns the HTML element with that id, dijit.byId returns the dijit with that id. Thats a pretty fundamental difference!

Peter
_______________________________________________
FAQ: http://dojotoolkit.org/support/faq
Book: http://dojotoolkit.org/docs/book
Forums: http://dojotoolkit.org/forum
Dojo-interest&lt; at &gt;dojotoolkit.org
http://turtle.dojotoolkit.org/mailman/listinfo/dojo-interest

</description>
    <dc:creator>Peter Ansell</dc:creator>
    <dc:date>2008-08-28T22:02:02</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.dojo.user/32964">
    <title>Re: How to add multiple lines to textarea</title>
    <link>http://permalink.gmane.org/gmane.comp.web.dojo.user/32964</link>
    <description>
I tried, 

dojo.byId('t_textA').attr('value', "this&lt;br&gt;is&lt;br&gt;a&lt;br&gt;test"); and 
dijit.byId('t_textA').attr('value', "this&lt;br&gt;is&lt;br&gt;a&lt;br&gt;test");

and the output i got through the firebug console is;

dojo.byId("t_textA").attr is not a function???

Thanks for your help thus far.

Chris



V S P wrote:

</description>
    <dc:creator>Chris Fleischmann</dc:creator>
    <dc:date>2008-08-28T21:16:48</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.dojo.user/32963">
    <title>[Q] dojox DataGrid misbehaving on IE7 (dojo pre 1.2)</title>
    <link>http://permalink.gmane.org/gmane.comp.web.dojo.user/32963</link>
    <description>
Wanted to ask if somebody could verify
on their system if they are seeing the same
behaviour:

on IE7/XP 32bit the new dojox DataGrid looses the rows view
when a column header is clicked 

All the other browsers correctly do the sort on the column

The complete test code is here

http://pastebin.com/d2269f6de


thank you
</description>
    <dc:creator>V S P</dc:creator>
    <dc:date>2008-08-28T08:43:58</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.dojo.user/32962">
    <title>Re: How to feed Grid with other datasourcelikesqlserver</title>
    <link>http://permalink.gmane.org/gmane.comp.web.dojo.user/32962</link>
    <description>Dear all:
Thank for your help ,I'm testing now!

Best Regards
chen kankan
_______________________________________________
FAQ: http://dojotoolkit.org/support/faq
Book: http://dojotoolkit.org/docs/book
Forums: http://dojotoolkit.org/forum
Dojo-interest&lt; at &gt;dojotoolkit.org
http://turtle.dojotoolkit.org/mailman/listinfo/dojo-interest

</description>
    <dc:creator>Chen Kankan</dc:creator>
    <dc:date>2008-08-28T07:22:09</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.dojo.user/32961">
    <title>Re: Large Dojo Application Design</title>
    <link>http://permalink.gmane.org/gmane.comp.web.dojo.user/32961</link>
    <description>_______________________________________________
FAQ: http://dojotoolkit.org/support/faq
Book: http://dojotoolkit.org/docs/book
Forums: http://dojotoolkit.org/forum
Dojo-interest&lt; at &gt;dojotoolkit.org
http://turtle.dojotoolkit.org/mailman/listinfo/dojo-interest
</description>
    <dc:creator>Peter Svensson</dc:creator>
    <dc:date>2008-08-28T07:00:02</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.dojo.user/32960">
    <title>Re: how to use OR operator in fetching data from store</title>
    <link>http://permalink.gmane.org/gmane.comp.web.dojo.user/32960</link>
    <description>
Hi all,

  Thanks everyone for helping me out, but i have found the solution and here
it comes:

var tempnet =  3 +  " || val: "  + 4 +  " || val: " +5;
var query = "{ complexQuery: (val: "+tempnet +")" + "AND "  +"(folder: \"" +
temparray[i-1].id[0] +"\") }";

where temparray is array and i am taking [i-1].id[0]th value.
 
but you have to download one external file "AndOrReadStore.js" and put it
under dojox.data folder. and also need to replace the store with
AndOrReadStore

i mean in my case i was using "FileReadStore" and now i am using
"AndOrReadStore"

AndOrReadStore.js file can be downloaded from 

http://trac.dojotoolkit.org/attachment/ticket/5873/tAndOrReadStore.js
http://trac.dojotoolkit.org/attachment/ticket/5873/tAndOrReadStore.js 

Anthony Fryer wrote:

</description>
    <dc:creator>lukess</dc:creator>
    <dc:date>2008-08-28T05:23:53</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.dojo.user/32959">
    <title>Re: Cannot collapse dijit.Tree with addOnLoad()</title>
    <link>http://permalink.gmane.org/gmane.comp.web.dojo.user/32959</link>
    <description>
What I want is just to collapse (not expand) the rootNode... all I
really need is:

rootNode.collapse();

I know that part... What I don't know is _when_ to call it, since I have
no way of knowing when the rootNode is available.


That's exactly my problem... I don't know when it's loaded... And to my
knowledge, the dijit.Tree does not have method for getting that
information.

The guy I quoted said:

"There is no onSetChildren, no onCreateNode, no some other event which
occurs when the tree data is available."

Is that true? 

/Jette



_______________________________________________
FAQ: http://dojotoolkit.org/support/faq
Book: http://dojotoolkit.org/docs/book
Forums: http://dojotoolkit.org/forum
Dojo-interest&lt; at &gt;dojotoolkit.org
http://turtle.dojotoolkit.org/mailman/listinfo/dojo-interest

</description>
    <dc:creator>Jette Derriche</dc:creator>
    <dc:date>2008-08-28T16:37:42</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.dojo.user/32958">
    <title>Re: how to use OR operator in fetching data from store</title>
    <link>http://permalink.gmane.org/gmane.comp.web.dojo.user/32958</link>
    <description>
Thanks for the information, i am using 1.0.2, so didn't know that. 

Regards,
Lukes


jaredj wrote:

</description>
    <dc:creator>lukess</dc:creator>
    <dc:date>2008-08-28T16:37:24</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.dojo.user/32957">
    <title>Re: How to add multiple lines to textarea</title>
    <link>http://permalink.gmane.org/gmane.comp.web.dojo.user/32957</link>
    <description>see if may be
dijit.byId('textA').attr('value', "this&lt;br&gt;is&lt;br&gt;a&lt;br&gt;test");

would work




On Thu, 28 Aug 2008 07:55:45 -0700 (PDT), "Chris Fleischmann"
&lt;chris.fleischmann&lt; at &gt;sun.com&gt; said:
</description>
    <dc:creator>V S P</dc:creator>
    <dc:date>2008-08-28T15:27:00</dc:date>
  </item>
  <textinput about="http://search.gmane.org/?group=$group=gmane.comp.web.dojo.user">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.web.dojo.user</link>
  </textinput>
</rdf:RDF>
