2 Einträge, 1 Seite |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
...
<elements>
type Block
id rahmen
<element>
type Block
id summe_caption
tag div
content_xml <a>Auftragssumme:</a>
</element>
<elements>
id summe
type Text
size 40
name summe
<attributes>
autocomplete off
</attributes>
constraint SingleValue
</elements>
</elements>
...
1
2
my $div = $form->get_element({ id => 'summe_caption' });
$div->content_xml('<a>foo</a>')
$form->get_all_element({id => 'foo'});
2 Einträge, 1 Seite |