Click here to Skip to main content
15,892,575 members
Everything / Dojo

Dojo

dojo

Great Reads

by SrikantSahu
This tip can be used to know more about how dojo templated widgets can be created and used inside a portlet programmatically.

Latest Articles

by SrikantSahu
This tip can be used to know more about how dojo templated widgets can be created and used inside a portlet programmatically.

All Articles

Sort by Score

Dojo 

31 Jul 2014 by SrikantSahu
This tip can be used to know more about how dojo templated widgets can be created and used inside a portlet programmatically.
17 Jul 2015 by Richard Deeming
Your timezone data doesn't contain the offset value, so you'll need to extract it from the label.Something like this should work:timeZone.sort( function( a, b ) { var re = /^\(GMT([+-]\d{1,2}):(\d{1,2})\).*$/; var aOffset = parseFloat(a.label.replace(re, "$1.$2")); var...
21 Feb 2014 by OriginalGriff
You can't. You could do it if you provided a specific player, which decoded the video file using information specific to the PC running the application (in much the same way the DRM does) but the file has to be specifically encrypted for the PC (or the player needs to be in contact with the...
26 Mar 2013 by Vasudevan Deepak Kumar
I am trying to evaluate between the JavaScript frameworks extJs and Dojo for a widget development. Both seem to be promising. The former is a commercial tool besides little heavy framework and latter is opensource. Or can we have something using jQuery itself?
26 Mar 2013 by Zoltán Zörgő
You take it in the wrong way. Some might share with you their experience with one or the other framework, but I don't think you might not get more detailed comparison than this one: http://en.wikipedia.org/wiki/Comparison_of_JavaScript_frameworks[^].Still, I suggest you better specify your...
2 May 2013 by krishna chaitanya
i'm using Struts 2 dojo div targets , the response that i get is not targeted to the div instead opens up as a full page and i'm getting 'djConfig undefined' erorr in developers tool console. i have this problem only in IE, works fine in all other browsers.Any help is appreciated
2 May 2013 by Shubhashish_Mandal
you can try this... link1
6 May 2013 by GrizzlyJames
I am developing a web application using Dojo v1.8 and my target machine runs IE9 and Silverlight 5.1.20125. In this web app, the user can select a tool from a toolbar at the top of the page that will open up in a content pane (or an IFrame if it is an external tool) below the toolbar (only one...
26 Jun 2013 by GrizzlyJames
Well I did not manage to solve this issue directly. However, there was another bug that I ran into which involved the java swing library not working on the production machine. The solution was to add the following tag as the first element of head:This forces IE to use IE8 instead of IE9....
13 Jul 2013 by Zafar A khan
visit this link may be helpful http://www.dynamicdrive.com/dynamicindex1/ddtabmenu.htm[^]
18 Jul 2013 by walterhevedeich
If you are referring to the DojoToolkit, here are some readings you may want to check[^] They have a website[^] and they also have tutorials[^]
19 Jul 2013 by OriginalGriff
Google is your friend: Be nice and visit him often. He can answer questions a lot more quickly than posting them here...A very quick search for "DOJO" gave 23 million hits. OK, most of those are going to be martial arts related, but many are relevant: Google[^]Start with link 3: Dojo...
20 Feb 2014 by thatraja
You could get quick answers by posting the same message in their forum. http://dojotoolkit.org/community/[^]Only they could give you quick & best answer for you.After posting question there, take a look at their documentation[^]
21 Feb 2014 by Member 10616541
Hey guys i've been trying to figure out how to encrypt a video so that it can only play on one device/computer.Please help.thanks
4 Nov 2014 by Craik.Zhang
How to put basic authorization header in script.get like xhr does? Or do we have an alternative to do this?Thanks in advance!!!
24 Jan 2015 by jessie02
var selectIds = grid.select.row.getSelected();//var alarmButton = registry.byId('Button');if(selectIds.length > 0) registry.byId("Button").set('disabled', false);else registry.byId("Button").set('disabled',true);I have the above piece of code. I need to disable the...
16 Jul 2015 by zingcoders
Hi All, little help needed on how we sort timezone based on the offset value. To put it simple, I got a array like belowyou can check the code here. http://jsfiddle.net/arunrajkhumar/2nvwzr6o/[^]The output looks like this,(GMT-2:0)...
16 Jul 2015 by zingcoders
Wow !! Quite Stunning Richard. :) :) Thanks a lot. But when timezone starts with same offset like this(GMT+12:50) Pacific/Chatham(GMT+12:45) Pacific/Chathamit should be sorted like this(GMT+12:45) Pacific/Chatham(GMT+12:50) Pacific/ChathamApart from this, I have no...
5 Jul 2016 by ngthtra
Hi All,I am using Grid using dojo lib. my grid have a check box column and with select single.when click on checkbox cell, if this checkbox of cell is checked, set unchecked for this checkbox. else if the checkbox is unchecked, set checked.I tried with javascript but can't do this. I...
12 Nov 2017 by SpChandr
I want to get the value selected in the filter select in dojo. But when I try to fetch the value I get the below error. Uncaught TypeError: Cannot read property 'value' of null What I have tried: This is my filter select : var filteringSelect = new FilteringSelect({ id: "stateSelect", ...
12 Nov 2017 by Karthik_Mahalingam
Quote: Uncaught typeerror: cannot read property 'value' of null This is a very common error which occurs, when trying to access the member of an object which is null. Fix: Validate for null value before accessing the members, but you will have to check why it is null at the first place, make...
11 Feb 2019 by s yu
In the code below, a dojo button is defined. Is it possible to dynamically fire its click event? Thanks if you can provide the hint!
29 Jul 2015 by zingcoders
Hi, need a help on this. is this possible ? https://jsfiddle.net/57jtpssr/[^]I just wanted to access a & b variable in a() function. is there is any trick or tricky closures or callback or deferred or work around to make it work without making a & b variables are global ? We can even...
29 Jul 2015 by Sergey Alexandrovich Kryukov
The whole idea of "trick" in programming is wrong. Short answer is: you cannot access a local variable, and it makes no sense because such variables are placed on stack; and the stack frame is removed after the return from a function.But let's go deeper. Strictly speaking, this is not...
29 Jul 2015 by kellyapt1
Another approach is to return an object from the function like this:var module = function(){ var a = 10; var b = 20; return { a: a } };function a(){ console.log("hi"); ...
29 Jul 2015 by Afzaal Ahmad Zeeshan
Initially, I was gonna say, No. Just by judging the question by the term "local variable". But no the answer is Yes, but a simple Object-oriented JavaScript hack. Although JavaScript is not based on Object-oriented semantics but it can be casted to one. The problem that you are having is that...
18 Jul 2013 by Manuel john
hi friends am trying to learn dojo . i do't know anything abt dojo please help me to start dojo .
19 Jul 2013 by Manuel john
friends i need a detail explanation about DOJO. and how to use dojo ?for dojo we need to install something in ma server...? please guide me
29 Jul 2015 by OriginalGriff
No.Local variables are stack based: which means that they exist for the lifetime of the function only, and when the function exits the memory they occupied is re-cycled for use by the next function. Additionally, they are not in a fixed location in memory each time, because where on the stack...
13 Jul 2013 by bazar t
Hi all.I want to create menu bar like IBM but i don't create like it.please guide me about menu bar.thanks
20 Feb 2014 by Member 10613404
Hi all,I wonder if anyone has used the EnhenceGrid to export a file in CSV format. I followed the example in EnhenceGrid.Exporter (http://dojotoolkit.org/reference-guide/1.9/dojox/grid/EnhancedGrid/plugins/Exporter.html#dojox-grid-enhancedgrid-plugins-exporter[^]). After clicking the "Run"...
12 Aug 2014 by Member 9998574
I Had Written A Jsp Page With Database Connectivity Getting The Data From The Database And Printing It Json Format. And I Want That Json Data To Be Sent To The Dojo Data Grid[{"sl":"1","id":"1","name":"shivasrinat"}urgent any one pls help me.1.i had written a jsp page with database...