Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to add a HTML multi-column table to a Zend_Form. The table would be populated by data from the database and each row should be preceded by a checkbox, as shown in the ASCII below:

+-----+-------------------------+-----------------------+--------------+
|     | Column_1                | Column_2              | Column_3     |
+-----+-------------------------+-----------------------+--------------+
| [x] | Row #1                  | Some data             | more data    |
+-----+-------------------------+-----------------------+--------------+
| [x] | Row #2                  | Some data             | more data    |
+-----+-------------------------+-----------------------+--------------+
| [x] | Row #3                  | Some data             | more data    |
+-----+-------------------------+-----------------------+--------------+

The table would handle many-to-many relationships. Would anyone happen to know how to implement this?

share|improve this question

1 Answer

At the very least you'll have to remove DtDd Decorator, set the Html Decorator tag to div and remove the Label Decorator.

I suggest you make the form as best you can then work from that, at least give it a go.

In the worst situation you will have to write your own form elements to replicate this HTML.

share|improve this answer
2  
I made my own form element and decorator instead, but thanks. – Andy Sep 3 '10 at 9:20
@Andy, that would be the way to go. I'm trying to make a Zend_Form that adds the correct elements for the datatypes matching the fields, etc, etc, etc. A one stop CRUD solutions perhaps? – d-_-b Nov 23 '10 at 7:16
Could you post the custom element and decorator ? – Marc Demierre Aug 11 '11 at 15:08
Sure just let me stop working so I can help you out..... – jakenoble Aug 11 '11 at 15:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.