New page
New page
New page
| ← Older revision | Revision as of 12:44, 26 January 2012 | ||
| Line 24: | Line 24: | ||
;Elements | ;Elements | ||
| − | :'''< | + | :'''<html>''' : For easy HTML output. Only one element should be used, |
<pre> | <pre> | ||
<childpanel region="north" id="tabGroup_priceManager_north" height="34" border="false"> | <childpanel region="north" id="tabGroup_priceManager_north" height="34" border="false"> | ||
| Line 32: | Line 32: | ||
</childpanel> | </childpanel> | ||
</pre> | </pre> | ||
| + | |||
| + | :'''<domhelper>''' : For customized nested HTML output. | ||
| + | <childpanel region="north" id="tabGroup_priceManager_north" height="40" border="false"> | ||
| + | <domhelper> | ||
| + | {tag: 'div', | ||
| + | style: 'width:100%;border:1px solid blue;', | ||
| + | cls: 'wtf', | ||
| + | children: [{ | ||
| + | tag: 'a', | ||
| + | href: 'www.allabout.de', | ||
| + | children: [{ | ||
| + | tag: 'span', | ||
| + | html: 'text' | ||
| + | }] | ||
| + | }] | ||
| + | } | ||
| + | </domhelper> | ||
| + | </childpanel> | ||
| + | |||
| + | * See http://docs.sencha.com/ext-js/3-4/#!/api/Ext.DomHelper | ||
:'''<ajaxPageLoad>''' : To load the content of a Plex-XML function in a panel. | :'''<ajaxPageLoad>''' : To load the content of a Plex-XML function in a panel. | ||
| ← Older revision | Revision as of 17:04, 25 January 2012 | ||
| Line 3: | Line 3: | ||
All data you see in the format is extracted from your Plex-Modell via Meta-Code on the first function call. You don't have to type it manually. | All data you see in the format is extracted from your Plex-Modell via Meta-Code on the first function call. You don't have to type it manually. | ||
| − | --> Hint: See [[ | + | --> Hint: See [[Format Field Attributes]] for additional attributes |
== Translate a format name == | == Translate a format name == | ||
Created page with "'''Format Field Attributes''' is a table in the PleXMLF-Modell. It is a 1:N relation to Fields and Format-Fields. Used to store additional fields attributes that won't be covered..."
New page
| ← Older revision | Revision as of 14:22, 23 January 2012 | ||
| Line 9: | Line 9: | ||
===Example=== | ===Example=== | ||
| − | + | Example with ajaxPageLoad-call-template. The template takes also care of the [[Secured Fields|secured-fields]] hashcode. | |
| − | <xsl:template name="MasterDetailGrid"> | + | <xsl:template name="MasterDetailGrid"> |
| − | + | <inner_request> | |
| − | + | <idiv> | |
| − | + | <xsl:call-template name="[[ajaxPageLoad]]"> | |
| − | + | <xsl:with-param name="param"> | |
| − | + | <request>FooRequest</request> | |
| − | + | <param value="ajax">style</param> | |
| − | + | ... | |
| − | + | <param value="FooValue">FooName</param> | |
| − | + | </xsl:with-param> | |
| − | + | </xsl:call-template> | |
| − | </xsl:template | + | </idiv> |
| − | + | </inner_request> | |
| + | </xsl:template> | ||
==iframe== | ==iframe== | ||