Hey everyone,
as a satisfied user of the Zend_Form component i am just trying to get into the
new Zend_Dojo_Form component. The included widgets like ValidationTextBox,
NumberSpinner etc. were all working well and there are no problems appearing!
But how do I get a dojox.grid.Grid into the Zend_Dojo_Form? In order to display
a grid to check and uncheck user-acces rights.
For example in old HTML-Tablestyle:
<table>
<tr>
<th>user</th><th>read</th><th>write</th>
</tr>
<tr>
<td>my user a</td><td><input type="checkbox"></td><input
type="checkbox"></td>
</tr>
<tr>
<td>my user b</td><td><input type="checkbox"></td><input
type="checkbox"></td>
</tr>
</table>
The result should be a form / grid that submits the data (and validates) it.
Thanks