Complete Java Server Faces (JSF) Tutorial - JSF Tutorials. JSF Tutorials at Rose India covers everything you need to know about JSF, This JSF Tutorial contains readable and interesting content organized in proper and sequential manner. Each concept has been explained by simple examples so that you can understand easily and implement immediately into your java web application. It provides coverage of key JSF concepts such as User Interface(UI) components, Renderers, Backing beans, Validators, Converters, Navigation, Event handling, Expession language, Messages etc...
Complete Java Server Faces (JSF) Tutorial - JSF Tutorials. JSF Tutorials at Rose India covers everything you need to know about JSF, This JSF Tutorial contains readable and interesting content organized in proper and sequential manner. Each concept has been explained by simple examples so that you can understand easily and implement immediately into your java web application. It provides coverage of key JSF concepts such as User Interface(UI) components, Renderers, Backing beans, Validators, Converters, Navigation, Event handling, Expession language, Messages etc...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:
Ads