The Dojo Toolkit dijit.form package contains “form widgets”.
0
votes
0answers
26 views
Using ValidationTextBox in Dojo with maxlength high hangs the entire UI
I am using ValidationTextBox in Dojo which has the maxlength as 180, now when I quickly type all the character at once it hangs the entire UI.
E.g. keep the character "p" on your keyboard pressed ...
0
votes
0answers
16 views
Value is not persisting inside dijit.form.TimeTextBox inside a grid
I have a requirement where i have to fetch values inside a dijit.form.TimeTextBox inside a grid on an event which i am able to do successfully. But the issue is when i click on the column the data is ...
0
votes
1answer
34 views
How to set dijit.form.radiobutton readonly mode
I have a radiobutton which I need to set as readonly. In readonly mode, it should show selected status but not respond to hover or click. The dojo documentation is a bit sparse in this regard. Any ...
0
votes
0answers
15 views
adding dijit/form/Select prevents form submition on enter
When form Contains dijit/form/Select, pressing Enter in TextBox does not trigger form submition.
What is proper way to reimplement this functionality?
Here is widget i use:
define([
...
0
votes
0answers
44 views
Resetting dijit.form.dateTextBox constraints
I have a specific requirement. Where if i am selecting From date between 1st January to 31st May, i should not allow the user to select To Date after 31st May. But in case if i am selecting any date ...
0
votes
1answer
31 views
How do I stop dojo from scrolling to form widgets on focus?
All form widgets extend from dijit.form._FormWidgetMixin which scrolls the window to the widget when it receives focus.
I personally find that this behavior makes most widgets unusable. How can I ...
2
votes
1answer
95 views
How to remove all options from a Dijit FilteringSelect widget?
I tried removing all options from dijit.form.filteringselect and adding an option to dijit.form.filteringselect using the below function. However, I am getting an error: no method getOptions and ...
0
votes
1answer
28 views
Dojo/Dijit: set entries id attribute in select
I'm trying to build a < select > with dijit\dojo having a JsonRest store (obtained by calling a remote Rest service).
the code is:
var storeEntity = new JsonRest({
target: contextPath + ...
0
votes
1answer
66 views
Dojo/connect “onKeyPress” ENTER event works locally but not on test server
My onKeyPress ENTER key event works when deployed (in IE) on my localhost but does not work (in IE) when deployed on the test server. On the test server the ENTER event works in FireFox and also ...
0
votes
1answer
123 views
Master-Detail relationship using DataGrid and Form widget in Dojo 1.8
I have a Grid that using dojox.data.JsonRestStore as store. I want to edit data by using widget Form (dijit.form.Form). Implement dojo/on instead of dojo.connect for binding the grid and form.
here ...
0
votes
0answers
70 views
Dojo Editor Icons sprite seems wrong in Domino
I have a xp:button:
<xp:button id="button1" dojoType="dijit.form.Button" title="Clear filter">
<xp:this.dojoAttributes>
<xp:dojoAttribute name="iconClass"
...
0
votes
1answer
117 views
How to add a icon to a dojo button in Xpages?
I want to use a dojo button icon on one of my buttons on my Xpage.
According to an example seen on the net I should add "dijit.form.Button" to the Dojo Type and then add a dojo attribute "iconClass" ...
0
votes
0answers
20 views
dijit/MenuItem custom template
I using dijit.form.DropDownButton with dijit.MenuItem. But I need display more data in MenuItem (not only label and class). How can I create own template and own MenuItem class?
Thank you!
0
votes
1answer
41 views
Custom dijit.form.HorizontalRuleLabels appear as percentages on Firefox
After adding a custom slider range (1 to 12), like this:
<div id="mySlider" > <!-- intialized on javascript -->
<div data-dojo-type="dijit.form.HorizontalRule"
...
0
votes
1answer
170 views
Dijit Combobox text align not working in IE8
I am new to using dijit and dojo. I am currently using dijit 1.6.0 and have a ComboBox defined as so:
this.comboBox = new dijit.form.ComboBox({
style : "margin-left: 10px; text-align: left",
...
0
votes
0answers
54 views
dojo validate with dijit.form.select
I have a select widget like this:
var select = new dijit.form.Select({
name: "edit_type",
required: true,
emptyLabel: " ",
...
0
votes
1answer
70 views
How do I use html labels with dijit/form widgets?
Ok, so I'm building an app using Dojo 1.8, and I have a custom widget with a template similar to this...
<div>
<label for="tag">Select something: </label>
<select id="tag"
...
0
votes
1answer
718 views
Dojo FilteringSelect Only Fires OnChange Event Once
I have a dojo.form.FilteringSelect widget in a dojo.Dialog that is create programmatically. I connected an onChange event to the FilteringSelect which works as expected the first time I select and ...
0
votes
0answers
65 views
Nesting layouts inside dojox/form/Manager
I'm developing a complex form that is being placed inside a dijit/Dialog. Several kinds of layouts (Border Containers & Content Panes) are inside this form, but the form is not being rendered in ...
0
votes
1answer
64 views
Dojox Form/Upload behavior on file selection
How can I detect when someone has indeed picked some files from the file explorer and has hit select? I want to add an event on the selection of files.
0
votes
0answers
67 views
Dojo 1.8 TimeTextBox Range Error
I am programatically creating TimeTextBox(es), though the same symptom appears for declaratively created instances too. My timezone is UTC +11. I'm using 24hr notation here.
If I set a default time ...
0
votes
0answers
75 views
Show icon for specific items in FilteringSelect backed by QueryReadStore in dojo 1.5
We need to indicate to users that particular items in a FilteringSelect backed by a QueryReadStore are to be upgraded before they can be chosen. The interaction that was agreed upon was to show an ...
1
vote
1answer
342 views
How to disable validation on dijit.form.FilteringSelect?
My FilteringSelect have to set required: true but can accept any text.
The problem is when the text not match in store, the error will appear.
How can I avoid that error?
Note : This code is ...
0
votes
1answer
121 views
dijit datetextbox behind jquery ui dialog
I have a dojo dijit datetextbox inside a jquery ui dialog.. the datetextbox calender displayed behind (underlayed) the dialog. I am using ie7.. see the my below code..
<!DOCTYPE html PUBLIC ...
0
votes
1answer
47 views
Basic popup in dojo 1.7
Hi so im playing with dojo and I looked at popup documentation and I don't understand all of it. So i Have a onClick event that I would like to use to open the popup.
else if (e.cell.identifier == ...
0
votes
1answer
59 views
dojo form validation clearing
I am using dijit.form.ValidationTextBox for my form. The problem is I am repopulating the data using client side code and I am not doing a postback for a new form. The error message sticks around when ...
1
vote
1answer
73 views
Is there a way to remove a comma from dojo's NumberSpinner? [duplicate]
Possible Duplicate:
Dojo: how to remove comma from value
For some reason, my NumberSpinner always displays numbers above 999 as comma-separated (1,001). Is there a way to make that spinner ...
0
votes
0answers
87 views
Adapt json structure for dojo combobox before binding
A REST API serves datas like this :
[
{
"level": {
"key": "id_value"
},
"subject": {
"value": "label-string"
}
}
]
I build the JsonStore and the combobox :
...
2
votes
1answer
288 views
dojo and dynamically added options to dijit.form.select
I use dojo 1.8.2 and here is my problem (I have seen this and this question, but they eren't helpful) :
My JS code receives from server some data in JSON format. With that, I dynamically create some ...
0
votes
1answer
90 views
Not able to select any options in dojo Select
I am using dojo 1.6 and the problem I have encountered is quite unique. Check out the following code:
var dd = new dijit.form.Select({
id: 'dd',
options: [{label:'option1'}, {label: ...
1
vote
1answer
153 views
dijit/MenuItem disabled but not grayed out automatically
I used dijit/MenuItem in a popup menu for the JS Canvas object. When user right click the Canvas, I want to show the menu and disable some items based on the location that user selected. Hence, I code ...
0
votes
0answers
123 views
Dojo Horizontal Slider displays over labels
I'm working on setting up a dijit.form.HorizontalSlider with labels and a rule and I can't get the display to work properly. The slider is displaying over top of the rule and the labels. I can see ...
0
votes
0answers
94 views
How to avoid onChange event in dijit.form.Select if the user is not selecting an option?
Does anybody knows how to avoid onChange event from firint in dijit.form.Select if the user is not selecting an option?
1
vote
4answers
128 views
Dynamically add dijit date text boxes
<label for="date1">Drop down Date box:</label>
<input type="text" name="date1" id="date1" value="2005-12-30"
data-dojo-type="dijit/form/DateTextBox"
required="true" />
What ...
0
votes
1answer
193 views
onfocus event not firing on dojo dijit FilteringSelect
I have a page with 7 dijit FilteringSelect widgets that I want to connect to stores fetched from the server if the user clicks on the widget or the widget otherwise gains focus. I want the event to ...
0
votes
2answers
334 views
Why does the label for the dijit.form.radiobutton not show up?
I have this code but the label does not show up:
var radioOne = new RadioButton({
label: "Current",
style: "margin-left:10px",
checked: ...
0
votes
1answer
568 views
Dojo FilteringSelect load data
I have the following code below, which will create a FilteringSelect and set the first selected item:
// Store initialization:
var jsonStore = custom.store.JsonRest({ ... });
var memoryStore = ...
0
votes
1answer
100 views
How to stop my Spring WebFlow Dojo (Dijit) Dropdown (Select) from getting to big. I need srollbar
I am working on a project that is Spring Web Flow and I am using Dojo (Dijit) for the UI and I have a dropdown(select) one of my screens and I would like to see if I can set the size of it.. its to ...
0
votes
0answers
41 views
destroy the contents of form
i am using a fuction which makes a dojo form programticcaly
<script>
function form1()
{
}
now i am using a checkbox so that my form1 appears when i check on it :-
var checkforabroad = new ...
0
votes
1answer
152 views
access the input tag inside two div tags in dojo
var t=dojo.query(".classform")
gives me all the divs and input tag with the name classform.
t[0]=
<div class="dijit dijitReset dijitInline dijitLeft dijitTextBox classofform" ...
0
votes
2answers
273 views
Dojo for date ((month/year) format
require(["dojo/date"], function(date){
var date1 = new Date("Feb 01, 2000")
}
we get the date in the format :- Tue Feb 01 2000 00:00:00 GMT+0530 (India Standard Time)
Now i want it in the format ...
1
vote
0answers
125 views
dojo dijit.form.Select IE8 overflow hidden
So I'm using a dojo.form.Select control and it contains really long values something like ...
0029000000000000000000000000000000000000000000000000000000000000000000000000000000000000
Which I want to ...
1
vote
2answers
48 views
acess the type of input in dojo
i enter dojo.query('input') i get the following :-
<input id="paragraphtwo" data-dojo-type="dijit/form/SimpleTextarea" rows="4" cols="50" style="width:auto">
now WHEN i write
text= ...
0
votes
1answer
139 views
dijit/form/numberspinner not working
http://jsfiddle.net/sMRP9/
In the above link you can check.. using version dojo 1.8 but I am unable to make a number spinner. Still a textbox is appearing instead of a textbox with spinner.
...
0
votes
1answer
217 views
dojo.connect no longer working with forms?
I was using something like this before Dojo 1.8, but now I get a "node not found" error :
<form dojoType="dijit.form.Form">
Search :
<input type="text" dojoType="dijit.form.TextBox" ...
0
votes
1answer
145 views
Unable to create Dojo custom widget for certain attributes
I am trying to create a custom ValidationTextBox widget for an email address. We have many areas in our system where we use an email address input and I want to create one widget that has the default ...
0
votes
1answer
259 views
Dojo DropDownButton, can I differentiate between a click on button vs. down arrow?
I'm using Dojo to create a DropDownButton within a Toolbar. The Toolbar, and button are created dynamically, like this:
this.widget = new Toolbar({ style: "background:black;" }, "toolbar");
...
1
vote
1answer
98 views
Dojo: Getting access to the clicked item in a dijit.form.Select?
I have a dijit Select widget and need to do something when the user clicks one of the dropdown items. Meaning I need access to the clicked item, to retrive some information, and call one of my own ...
0
votes
0answers
35 views
how to make dijit.form.DateTextBox's text box display the locale specific date?
For example, I'd like the text box to show:
Wednesday, September 12, 2012
instead of the default
9/12/2012
0
votes
0answers
73 views
accessing values in dijit.form.select using alphanumeric keys
I have one dijit.form.select widget with value {'a','b','c','d'} in it. When I open it and press either a,b,c or d on keyboard the corresponding value inside this drop down does not get selected ...
