In this tutorial, you will learn how to add image on the button using dojo toolkit. When user clicks on the print button, JavaScript function is called which displays "You clicked on Print Button" message as alert.
Create a Button
The following example code imports the required dojo style and script file.
<script type="text/javascript" src="dojo/dojo.js"
djConfig="parseOnLoad: true">
</script>
<style type="text/css"">
@import "dijit/themes/tundra/tundra.css";
@import "dojo/resources/dojo.css";
</style>
<script type="text/javascript">
dojo.require("dijit.form.Button");
</script>
dojo.require("dijit.form.Button"): This line instructs the browser to load the dijit button widget.
Following code creates the button and adds the JavaScript onclick event.
<button dojoType="dijit.form.Button" id="helloButton">
Click Me
<script type="dojo/method" event="onClick">
console.log('you pressed the button');
alert("You clicked on Print Button!");
</script>
</button>
Here is the full code of dojo button image program:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"Output of program:

After clicking the "Print" command button, you get:

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.
Ask Questions? Discuss: Dojo Button Image, Dojo Button, Dojo Button onclick, Dojo Buttons
Post your Comment