2
votes
1answer
18 views

How do I add a sub-menu item to a menu item using dojo dijit/form/DropDownButton?

I have created a Dojo DropDownButton using dijit/form/DropDownButton and created MenuItems using dijit/MenuItem. I am trying to create sub-menu items for the MenuItems so that the options are ...
0
votes
0answers
12 views

Dojo 1.6 how to catch drag and drop 'inserNode' events

Trying to dynamic change DND container's height but seems not working. assigned_list holds all insertions, I try to catch nodes using following method bu failed, firebug never go through this method ...
0
votes
0answers
45 views

Normal table to sortable table

I want to transform a standard HTML table into a sortable table using the dojo framework. I want your advice on how this can be done with less effort as possible. All I was able to found was this: ...
1
vote
1answer
18 views

dojo grid doesn't work inside div

Enclosing <div id="grid1"></div> inside <div></div> makes it disappear. In the simple code below Datagrid behaves perfectly well until enclosed in an extra div. This works: ...
1
vote
2answers
37 views

HTML is shown as plain text in dojo widget

I have a dojo widget with generated content, text message in my case. Message text is a formatted text with <b>, <i> etc. tags. When I put it to my widget via ${messageText} it is shown as ...
0
votes
1answer
43 views

How to parse HTML tags to text features in dijit.Editor?

I have a dijit.Editor on the page. If i type "example" and apply bold feature, it will look like "example". And the text I got from the editor is <b>example</br>. But if I want to put bold ...
0
votes
2answers
32 views

graphing multiple series with the same y axis on an html page

For the last couple of days, I have been attempting to find a tool that allows me to plot two graphs on the same that, with the same y-axis and different x-axis co-ordinates. In particular, I would ...
1
vote
1answer
70 views

populate dynamically created html table in dojo and javascript

in html i'm dynamically creating a table: function createTable() { var tablecontents = ""; tablecontents = "<table>"; tablecontents += "<tr>"; for (var i = 0; i < ...
0
votes
3answers
41 views

How to surround element with div

How to surround element with div tag in dojo? <button>Testing</button> : <div> <button>Testing</button> </div> <div>Testing ...
0
votes
1answer
91 views

$(“#id”).val() return option text for a dojo.filteringselect object

We have a dojo filtering select object but have to validate by jquery. Now the problem is var value= j("#filteringSelectId").val(); value only returns the text of selected option instead of the ...
0
votes
2answers
125 views

Display point values on mouseover in dojox.charting.Chart

I have two questions regarding dojo charts. 1) How can I show point values in a dojo Chart on mouse over? Below is the chart I developed using YUI library. you can see when I mouseover a point it ...
0
votes
0answers
29 views

Hide Buttons from DOJO Toolbar

I am using DOJO Toolbar and creating some buttons within it. But now I want to hide some of the buttons based on some condition. What I have tried is to add "id" to button and use ...
0
votes
0answers
28 views

how to make inlineeditbox of dojo editable on dblclick

how can I make an inlineeditbox editable on double click. By default it is editable on single click. any help will be appriciated. I am using it like: <div editor="dijit.form.TextBox" ...
0
votes
1answer
53 views

How to avoid dojo to parse an element

I have a elemetn in my page. I don't control all javascripts used in this page, and seems that in some place my "select" element is being parsed by dojo and changed to a dijit element ...
0
votes
1answer
47 views

Scrollbar not visible in iframe

I am trying to use iframe with src pointing to a website made in dojo framework. My URL is on different server and and my iframe is on different server. I am just using URL to load URL's content ...
0
votes
0answers
24 views

Downloading Dojo Grid Content in various formats

I want to export/download the Dojo Data Grid content, which I have connected to a HTML Table Store [called by onClick event of a button] in various formats such as text,html,excel,pdf. Could someone ...
0
votes
1answer
147 views

Dojo: TypeError: dojo.byId(…).attr is not a function

Weird, line one works fine but line 3 give me TypeError: dojo.byId(...).attr is not a function. There is hidden fields that hold all student pair that as <input type="hidden" ...
0
votes
2answers
70 views

HTML file with Dojo refuses to work from my local machine

I am using some CDN links in a file copied directly from a dojo tutorial. I can't figure out why it won't work. There is supposed to be a dialog when you click the Show Me! button but the parts of the ...
0
votes
1answer
78 views

Dojo key press event is not working

I am using dojo to disable other keypress events on dojo.form.numberTextBox. I am doing in this way <input style="width: 100px" data-dojo-type="dijit.form.NumberTextBox" name="test" id="test" ...
0
votes
1answer
29 views

Dojo how to catch user's input of Dojo.FilteringSelect for onkeyup event

I am catching up an onkeyup event on dojo filteringSelect However seems var userInput = dijit.byId('someId').attr("value"); Only return either "" or some value precisely equals to one of the ...
0
votes
1answer
98 views

Can I use HTML tags inside an SVG tag?

I'd like to use regular HTML tags (for instance an input tag) within an SVG tag. Why? I would like my SVG graphic to be able to get text from the user (e.g., the user clicks on a box drawn with SVG ...
1
vote
1answer
66 views

Redirect from page to dojo view

How can I redirect from a page html in worklight to DOJO views by clicking on simple button ?
1
vote
1answer
84 views

Dojo: option[selected ='selected'] not working for run-time change

I am working on a multi-select box and found var count = dojo.query("option[selected ='selected']", dojo.byId('select_id')).length; Always returns whatever original from the page(database) but ...
0
votes
1answer
89 views

dijit contentpane content containing attach points

something like this: var cp = new ContentPane({ title: self.friends_data.data[index].name, closable: true, onClose:function(){ ...
0
votes
1answer
59 views

Absolute DIV inside dojo Dialog

I have created a dialog and inside it I have put a Multi-select Combo box control. A list of options pops out when a user clicks the dropdown button. The problem is that, the list is bigger than the ...
1
vote
1answer
97 views

Dojo Toolkit 1.8.3 Mobile dojo/on Handler Event Switch Widget

I am trying to create a basic event handler for a dojox.mobile.Switch widget using the onStateChanged event. I am using dojo/on event handler module with respect to the new AMD architecture and having ...
1
vote
1answer
69 views

dijit declarative event handlers

I'm trying to declare a dijit TextBox but I'm not able to attach the focus event to it. I've tried doing so declaratively: <div class="midArea_div"> <div class="searchBox_div"> ...
1
vote
1answer
50 views

making a search box in dijit

http://jsfiddle.net/PRAPc/ I want a search icon like this rendered in the beginning of the textbox and I can't get the following to work. Please help. html: <body class="claro" ...
-1
votes
2answers
152 views

How to Copy the text present in the dijit.Tooltip

On mouse over, am showing some text in the tool tip. On mouse click, i want to copy the text in the tool tip. is it possible to copy the text in the tool tip. tool tip code: <img ...
0
votes
2answers
224 views

DOJO dialog not opening second time after clicking close(x) button on the upper right corner

I have a dialog button named EDIT in my page. First time when you click on EDIT button,the EDIT pop up window appears. When I close the pop up window by clicking on the Close (x) button located on ...
0
votes
1answer
119 views

DOJO dialog box not opening second time

I am using DOJO for a dialog box called 'Edit'. Clicking on the 'Edit' button the first time opens a dialog. When closing the dialog using the 'x' button on the right of the dialog screen, the dialog ...
0
votes
2answers
170 views

Textarea maxlength value not working

I have a textarea and I am setting maxlength from JS using DOJO library.The code is as follows: <textarea id="ct" rows="50" cols="50"></textarea> In JS the max length is setting up as ...
-1
votes
1answer
122 views

Enabling a Textbox and making it editable

I have a textbox field displayed in my jsp file which looks always disabled and uneditable. I would like to have it enabled and editable on one condition. So when the above condition is satisfied, I ...
0
votes
0answers
48 views

chrome/firefox unable to render html which is coming form different server

io.iframe.send to submit multipart data to my server, my HTML files are hosted on web server which is running on 80 and our application on tomcat which is running on 8080 , when i make request to my ...
0
votes
1answer
83 views

Unable to get Dojo custom module working with ASP.net MVC

New to Dojo and I am just trying to get a basic Hello world module working in dojo/MVC and can't seem to get it to work. I keep getting either no response / errors at all or cryptic Syntax errors ...
0
votes
2answers
76 views

Getting 3rd line of div content

I have a div with some content in four lines. I am able to get number of lines by using the following code. But my requirement is to get 4 line text of the div. For example: <div> ut returns ...
2
votes
1answer
135 views

Dojo: Div Tag Issue

We are currently using Dojo to create a mobile map application. We're using Esri for the map service. Everything was working before changing from 3.2 to 3.3. The map works fine but I'm having issues ...
1
vote
3answers
132 views

Truncating string to 125 characters in Div element

I have Div element having the following content It is a dummy text Lorem Ipsum Iswwpe ID DFDLJLKDjlk It is a dummy text Lorem Ipsum Iswwpe ID DFDLJLKDjlk It is a dummy text Lorem Ipsum Iswwpe ID ...
0
votes
0answers
87 views

dojo.io.iframe.send does not submit whole form

I am using dojo.io.iframe.send to submit my form which contains input elements and file. I am using enctype="multipart/form-data" since i have file upload but the in my server side code i only get ...
0
votes
0answers
41 views

save and share widget configuration and layout

I'm developing a web application that allows users to add multiple widgets to the screen and interact with them. Each widget can have different content, and can change dynamically in response to user ...
0
votes
1answer
57 views

How can I vertically center content within a closed Dojo Titlepane?

I have a dojo titlepane that contains a button on the left-hand side and a paragraph of text on the right-hand side. I would like to be able to vertically center align the button in regard to the ...
1
vote
1answer
95 views

Force FilteringSelect to lost focus after selecting a value

I'm using Dojo 1.6. I have a FilteringSelect connected to a datastore. I would like to empty the field when the user clicks on it, so the user does not need not remove anything. I have managed to do ...
0
votes
1answer
119 views

Dojo: building custom configuration

I am trying to build a custom dojo configuration. I have to admit that I did not fully understand the official documentation. This tutorial has been very helpful so far, though. Here is my ...
1
vote
1answer
191 views

Convert a HTML input tag to Dojo TextBox using java script

I am generating 4 input fields from inside my Java Script. But now I want to use dojo TextBox dijit to take input. How can I convert my input tags to dojo TextBox? This is the present Code... ...
-1
votes
2answers
32 views

prevent IconMenuIcon from being highlighted when clicked

I am using html, javascript and the dojo library. What I have is a IconMenu with 6 IconMenuItems. Now, whenever I click a IconMenuIcon it gets highlighted but I want to prevent the highlighting ...
0
votes
1answer
304 views

dojo dijit.form.select : getting data out of the dataStore?

I am using dojo and want to populate a dijit.form.select widget from a dataStore (this works). Whenever I make a selection in the select-widget, other fields from my dataStore should be read and then ...
0
votes
1answer
64 views

How to fix the width of the select box in dojo using html

Hi I have a select box for which I have kept some width, the options for the select box are coming from a rest service, which has a list of names, now the issue is, depending on the width of the name ...
0
votes
0answers
60 views

Included DIV repeating

I'm including a page into a div whenever a link is clicked. However when the page loads one of the div writtenDir is included twice. HTML <!DOCTYPE html> <html lang="en"> ...
0
votes
3answers
107 views

Formless “form” submission using enter button

We are currently building a worklight application using Dojo Mobile and there are several areas where we have input fields and submit buttons. These input fields and submit buttons do are not in a ...
0
votes
1answer
153 views

Dojo dom-construct.place() not working

I'm writing a widget which takes all child <img> tags, grabs the src attribute, and should create a unordered list with the child list elements having the background be the aforementioned ...

1 2 3 4 5