Login Register

firefox

How to enable TextBox Dijit to save Login Data? (i.e Firefox Password-Store)

hi,

I searched in google and in whole dojo site but found any answer

How can I get Form Dijits (TextBox and Form) to login data like normal html input fields?

I'm using those dijits for a really long time but I've never seen this behaviour :(

thx and greetings,
Melchior

Firefox 2.0.0.17 FloatingPane issues

I'm maintaining a legacy module based on Dojo. A view that appears normally in Firefox 2.0.0.16 and IE (both 6 and 7) appears with a large blank area in Dojo 2.0.0.17, and the page doesn't load completely unless the line

dojo.require("dojo.widget.FloatingPane");

is commented out. The blank area may be a div that would have become a modal floating pane.

Does anyone know what broke?

Thanks for any insights,
Adam Grant
Quest Software

WordWrap in Grid in FireFox

I have a small problem with grid on FireFox. The grid is contained as follows:
BorderContainer -> ContentPane -> Grid
I have 3 columns in my table and since I dont like using pixels but rather prefer percentage,
the columns' width are 60%,20% and 20% respectively. Still the cell width is not
enough for the full text to display in the 60% column.
In IE, I use the style word-wrap: break-word; because of which the contents in the cell
do not get truncated. However, the same gets truncated in FireFox.
Is there any solution to this problem?

dojo.js - failure code: 0x805e000a - FF3

This strange error occurred when i want to submit form via xhrPost:

Submit

if (dijit.byId("advertiserForm" ).validate()) {
dojo.xhrPost({
url: "http://localhost:5000/advertisers" ,
form: "advertiserForm" ,
load: function() {
console.log("Form successfully submitted" );

xhrPost -> Firefox fine, IE not so much

I'm having the following issue using xhrPost to submit form data in IE 6:

(When I submit in Firefox, everything works out great: the form is submitted when a user clicks the submit button, and the callback updates the proper div w/ the returned data.)

In IE, I get an "object Error" message from my XHRError function. This is unfortunate, because the entire user base for this application uses IE.

Reference code:

function testPost() {
dojo.xhrPost( {

Textarea bug in Firefox?

I've hit a problem with the Textarea component that I can't work out and suspect a bug.

I'm building a form in an ordered list. In one list item I have a digit textarea. It displays fine however when used in Firefox (3) the enter key does not work.

This is the code I'm using:

<form>
<ol><li>
	<textarea style="width:300px;" dojoType="dijit.form.Textarea"></textarea>
</li></ol>
</form>

Selecting tree node programmatically: Works in IE, buggy in Firefox

Hello,

I have a simple tree (2 levels), created in html like so:

<div dojotype="dijit.Tree" id="myTree" label="Top" openonclick="true" store="menuStore">

I want to select a node programmatically, and have the tree open to it, as if the user had clicked it. If the target node is in a closed folder, open it first (this is simplified by way of example - it assumes the target is one level down from a top-level node):

var tree = dijit.byId('myTree');
var menuStore = tree.store;

keypress problems in a TextBox on a dialog, launched from a dialog

I'm trying to launch a dialog from a dialog. On the second dialog with a textbox, I'm having problems with keypresses. Under IE7, I can't type in that textbox at all, while in FF2, I can type, but can not hit back space. This seems to be new in dojo 1.1.x. This was working in previous versions of dojo.

Is there a trac log for this? Is there a current work around?

Here is an example with the issue:


<html>
<head>
<style type="text/css">
/* <![CDATA[ */

Firefox scrolling issues

Hi all,

In WinXP Firefox 2, I have a Grid that is scrollable both horizontally and vertically, similar to the dojox/grid/tests/test_sizing.html Test.

TabContainer does not apper in ExpandoPane (Firefox)

Hi,

In Firefox - when a TabContainer is attached pro programmatically to an expando, it does not display. However, when the expando is closed and then re-opened, the tab container will appear, then fade out. I have tried various ways of attaching the tab container to the expando including putting in inside a content pane. No joy. Interestingly, an AccordionContainer appears to work just fine. Is this a known bug?

Here is the code:


var bc = new dijit.layout.BorderContainer ( {
style : "width:500px; height:450px; border:2px solid black",
id : "0"
} );

Syndicate content