Development

Changeset 10876

You must first sign up to be able to contribute.

Changeset 10876

Show
Ignore:
Timestamp:
08/14/08 07:50:41 (3 months ago)
Author:
hartym
Message:

bad word usage - fixes #4199

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • doc/branches/1.1/forms_book/en/01-Form-Creation.txt

    r9798 r10876  
    109109    </form> 
    110110 
    111 A symfony form only handles widgets displaying information to users. In the `indexSuccess` template, the `<?php echo $form ?>` line only displays three fields. The other elements such as the `form` tag and the submit button will need to be added by the developer. This might not look obvious at first, but we will see later how useful and easy it is to imbricate forms. 
     111A symfony form only handles widgets displaying information to users. In the `indexSuccess` template, the `<?php echo $form ?>` line only displays three fields. The other elements such as the `form` tag and the submit button will need to be added by the developer. This might not look obvious at first, but we will see later how useful and easy it is to embed forms. 
    112112 
    113113Using the construction `<?php echo $form ?>` is very useful when creating prototypes and defining forms. It allows developers to concentrate on the business logic without worrying about visual aspects. Chapter three will explain how to personalize the template and form layout. 
     
    203203>The `setLabels()` method is applied to a collection of widgets included in the `widgetSchema` object . 
    204204> 
    205 >We will see in the Chapter 5 that the "schema widget" notion makes it easier to manage imbricated forms. 
     205>We will see in the Chapter 5 that the "schema widget" notion makes it easier to manage embedded forms. 
    206206 
    207207### Beyond generated tables 
  • doc/branches/1.2/forms_book/en/01-Form-Creation.txt

    r9798 r10876  
    109109    </form> 
    110110 
    111 A symfony form only handles widgets displaying information to users. In the `indexSuccess` template, the `<?php echo $form ?>` line only displays three fields. The other elements such as the `form` tag and the submit button will need to be added by the developer. This might not look obvious at first, but we will see later how useful and easy it is to imbricate forms. 
     111A symfony form only handles widgets displaying information to users. In the `indexSuccess` template, the `<?php echo $form ?>` line only displays three fields. The other elements such as the `form` tag and the submit button will need to be added by the developer. This might not look obvious at first, but we will see later how useful and easy it is to embed forms. 
    112112 
    113113Using the construction `<?php echo $form ?>` is very useful when creating prototypes and defining forms. It allows developers to concentrate on the business logic without worrying about visual aspects. Chapter three will explain how to personalize the template and form layout. 
     
    203203>The `setLabels()` method is applied to a collection of widgets included in the `widgetSchema` object . 
    204204> 
    205 >We will see in the Chapter 5 that the "schema widget" notion makes it easier to manage imbricated forms. 
     205>We will see in the Chapter 5 that the "schema widget" notion makes it easier to manage embedded forms. 
    206206 
    207207### Beyond generated tables