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?
firefox
WordWrap in Grid in FireFox
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">
/* <