Executer un Dialog Box à l'ouverture d'une page
Bonjour tout le monde,
je travaille actuellement sur un projet integrant zend framework et dojo(zend_dojo), je voulais savoir comment je peur executer une message de dialogue suite à une redirection vers une page:
voila le code du Dialog Box que j'utilise:
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
| <div dojoType="dijit.Dialog" id="dialog1" title="First Dialog"
execute="alert('submitted w/args:\n' + dojo.toJson(arguments[0], true));">
<table>
<tr>
<td><label for="name">Name: </label></td>
<td><input dojoType="dijit.form.TextBox" type="text" name="name" id="name"></td>
</tr>
<tr>
<td><label for="loc">Location: </label></td>
<td><input dojoType="dijit.form.TextBox" type="text" name="loc" id="loc"></td>
</tr>
<tr>
<td><label for="date">Date: </label></td>
<td><input dojoType="dijit.form.DateTextBox" type="text" name="date" id="date"></td>
</tr>
<tr>
<td><label for="date">Time: </label></td>
<td><input dojoType="dijit.form.TimeTextBox" type="text" name="time" id="time"></td>
</tr>
<tr>
<td><label for="desc">Description: </label></td>
<td><input dojoType="dijit.form.TextBox" type="text" name="desc" id="desc"></td>
</tr>
<tr>
<td colspan="2" align="center">
<button dojoType="dijit.form.Button" type="submit">OK</button></td>
</tr>
</table></div> |
Merci.
Naji