I am having trouble getting the behavior I want in IE 6. (FireFox seems to work OK.)
dijit.form.Button
How to set focus to Button in IE 6 without sending the wrong message?
dijit.form.Button iconClass not working in IE7
got a strange problem in IE7
I wanted to add icons to my buttons but with a value on the button the icon does not display on IE7 but works perfectly in FF
<button name="moo" id="moo" type="button" value="this kills the icon" iconClass="dijitEditorIcon dijitEditorIconSave" dojoType="dijit.form.Button">Save Template</button>
remove the value and it works perfectly
<button name="moo" id="moo" type="button" iconClass="dijitEditorIcon dijitEditorIconSave" dojoType="dijit.form.Button">Save Template</button>
has anyone else encountered this?
- Login or register to post comments
- Read more
- Subscribe post
Button Padding (Left/Right) Difference Between IE(7) and FF(2 or 3)
Hello All,
I have been strugling with a really annoying problem and figured I'd throw it out to the dojo community for some advice.
Currently I have a a set of buttons to control page content. They work fine and I have had moderate success adjusting their width BUT I cannot get IE and FF to have the exact same width buttons.
name attribute for dijit.form.Button not passed through to DOM
it seems to me that the name attribute does not make it through for the dijit.form.Button. this is a problem because a common way for the server to check if a form has been submitted is to check $_POST['submit'] and if the name is not passed through then the parameter is not set. i have a form that my server handles correctly if my submit button is not a dijit.form.Button but when i make it a dijit.form.Button, it stops working.
dijit button fails on ie 7 breaking all other functionality
FF2, all works fine. IE7, dijit.form.button call causes error that fails rest of the script. no controls work. Disabling nativeXHR in IE7 solves this but no visitor to our site will put up with us telling them to change their security settings. Commenting out the button call solves issues for spinner and datetextbox but now we can't use dijit buttons. How can this IE7 issues be avoided without end-user action?
//dojo.require("dijit.form.Button");
dojo.require("dijit.form.NumberSpinner");
dojo.require("dijit.form.DateTextBox");
Button with showLabel="false" has first not the right size
I have some buttons which look like this:
<span><b>Rich</b><i> Text</i> Test!</span>
</button>
I load this html snippet later, not with loading the site. I parse the node with dojo.parser.parse(node);
My problem is, that the button first has another size because of the span-tag. It takes a while until the button gets the correct size.
My iconClass:
.saveIcon {
background-image: url(icons/save.gif);
background-repeat: no-repeat;
dojo is not defined error message in firefox console.
Hi All,
I'm getting below error message for this acrion(http://localhost:7001/hibernate/events/Dojo.action).
dojo is not defined
dojo.require("dijit.form.Button");
Please find my progrm:
TooltipDialog demo
// Dojo configuration
djConfig = {
parseOnLoad: true,
baseRelativePath: "<@s.url includeParams='none' value='/struts/dojo' includeParams='none' encode='false'/>",
isDebug: true,
IE6 dijit Button border bottom is not showing up and I can't get the button down to 15x15px
Has anyone run into the problem where the button won't size properly in ie6 and the bottom borders are missing?
I've added a button to the right side of the titlepane widget and it works and looks great in FF and IE7 but in IE6 it overflows and pushing the wipe content over to the left doesn't size to 15x15 and the bottom border of every button in the page is missing... I've got lots of pages with buttons but this is the only one that is really hurting. Any ideas?
- Login or register to post comments
- Subscribe post
Combining Dijit with Standard DOM - I Think
I think this is an issue with combining the standard page DOM with creating dijit elements in the DOM, or I could be way off track. Here is a complete sample of some code that is similar to what I am trying to do.
Dojo Test
@import "dojo/dijit/themes/tundra/tundra.css";
@import "dojo/dojo/resources/dojo.css";
