Hi,
I am trying to make 1 field into text area.

here is my schema.yml snippet for the table i am creating admin pages.

 bosf_society_info:
    _attributes: { phpName: BosfSocietyInfo }
    society_id: { type: INTEGER, size: '11', primaryKey: true,
autoIncrement: true, required: true }
    society_name: { type: VARCHAR, size: '100', required: false }
    registration_number: { type: VARCHAR, size: '45', required: false }
    address_line1: { type: VARCHAR, size: '100', required: false }
    address_line2: { type: VARCHAR, size: '100', required: false }
    city: { type: VARCHAR, size: '100', required: true }
    pin: { type: VARCHAR, size: '10', required: false }
    category_info: { type: VARCHAR, size: '300', required: false }
    website_url: { type: VARCHAR, size: '150', required: false }
    description: { type: VARCHAR, size: '2000', required: false }
    contact_person: { type: VARCHAR, size: '100', required: true }
    contact_designation: { type: VARCHAR, size: '100', required: false }
    contact_number: { type: VARCHAR, size: '15', required: true }
    contact_email: { type: VARCHAR, size: '150', required: false }
    is_validated: { type: TINYINT, size: '4', required: false, defaultValue:
'0' }
    expectation: { type: VARCHAR, size: '500', required: false }
    present_activities: { type: VARCHAR, size: '500', required: false }



My generator.yml entry for the field(description, which need to be a text
area) is

 *     edit:
        description:  { type: textarea_tag, params: rich=true css=user.css
tinymce_options=width:330 }
*
Unfortunately, it is not working (I used propel generate-admin command to
create the module. Please do let me know what parameters will make it
correctly working.



-- 
Regards...
Harinath
http://harinath.in

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"symfony users" group.
To post to this group, send email to symfony-users@googlegroups.com
To unsubscribe from this group, send email to 
symfony-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to