Creating a simple Guide layoutCreating a simple Guide layout is an easy way to get familiar with basic concepts, including the structure and MXML definition of a Guide layout.
Important:
Try not to edit the Guide layout files
that are included with LiveCycle ES2.5. Instead, make uniquely named
copies of the content to help you get started creating Guide layout
extensions.
Create a simple Guide layout
The MXML source for your new Guide layout looks like the following: <?xml version="1.0" encoding="utf-8"?> <Wrapper xmlns="ga.controls.*" xmlns:mx="http://www.adobe.com/2006/mxml" > </Wrapper> Note the <Wrapper> element includes the namespace attribute xmlns="ga.controls.*" . It is considered good practice to provide namespaces when you reference objects from the Guide API. Providing namespaces reduces the amount of MXML code and makes the code more readable. Updating the MXML source for the blank panel layout, the panel layout source looks like the following: <?xml version="1.0" encoding="utf-8"?> <gc:Wrapper xmlns:mx="http://www.adobe.com/2006/mxml" xmlns:gc="ga.controls.*" > </gc:Wrapper> |
|
// Ethnio survey code removed