Tagged Questions
4
votes
2answers
2k views
Why does FF3 say “Permission denied to get property HTMLDivElement.tagName”?
When I run this through FireFox 3:
<script type="text/javascript" src="../resources/dojo-1.2.3-src/dojo/dojo.js" djConfig="parseOnLoad: true"></script>
<script type="text/javascript" ...
0
votes
0answers
129 views
dijit.InlineEditBox line-breaks issue in Chrome
I am trying to use "dijit.InlineEditBox" on a page to allow user to change a field on the page. The issue I am facing here is it's behavior in Chrome and Firefox is different. I am using the following ...
0
votes
0answers
110 views
Dojo InlineEditBox, how to prevent blur based on postCreate value
I have InlineEditBox that I want to do something specific with. When the editNode is loaded and displayed when the InlineEditBox receives an _onClick event, I want to connect a function in a parent ...
0
votes
0answers
159 views
Dojo InlineEditBox click function problem in Firefox, Chrome
I am using a Dojo InlineEditBox and I want users to click on a picture that will enable them to edit the box that is named 'appid' in dojo. The .click() event fires in IE but not Firefox and Chrome. ...
0
votes
1answer
306 views
onChange event triggered unexpectedly with modified InlineEditBox
Following this thread: Using dijit.InlineEditBox with dijit.form.Select I've been using a "fixed version" of InlineEditBox that can be seen in the fiddle below.
...
0
votes
3answers
941 views
Using dijit.InlineEditBox with dijit.form.Select
I'm trying to use a dijit.form.Select as the editor for my dijit.InlineEditBox. Two problems / unexpected behavior seem to occur:
Inconsistently, the InLineEditBox doesn't have the initial value set ...
0
votes
1answer
1k views
understanding logic of dijit css and styles
I am trying to use dijit.InlineEditBox.
I have put the following code in my HTML, using the example in the dojo docs:
<script type="text/javascript">
dojo.require("dijit.InlineEditBox");
...