Changeset 1051
- Timestamp:
- 08/16/08 00:50:35 (3 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/experimental/jforms-groups/lib/jelix/forms/jFormsCompiler_jf_1_1.class.php
r1050 r1051 110 110 protected function generateGroup(&$source, $control, &$attributes) { 111 111 $this->readLabel($source, $control, 'group'); 112 $this->attrReadOnly( &$source, &$attributes);112 $this->attrReadOnly($source, $attributes); 113 113 $source[]='$topctrl = $ctrl;'; 114 114 $ctrlcount = $this->readChildControls($source, 'group', $control, array('label')); … … 122 122 protected function generateChoice(&$source, $control, &$attributes) { 123 123 $this->readLabel($source, $control, 'choice'); 124 $this->attrReadOnly( &$source, &$attributes);124 $this->attrReadOnly($source, $attributes); 125 125 $this->readHelpHintAlert($source, $control); 126 126 $source[]='$topctrl = $ctrl;'; trunk/lib/jelix/forms/jFormsCompiler_jf_1_1.class.php
r1050 r1051 110 110 protected function generateGroup(&$source, $control, &$attributes) { 111 111 $this->readLabel($source, $control, 'group'); 112 $this->attrReadOnly( &$source, &$attributes);112 $this->attrReadOnly($source, $attributes); 113 113 $source[]='$topctrl = $ctrl;'; 114 114 $ctrlcount = $this->readChildControls($source, 'group', $control, array('label')); … … 122 122 protected function generateChoice(&$source, $control, &$attributes) { 123 123 $this->readLabel($source, $control, 'choice'); 124 $this->attrReadOnly( &$source, &$attributes);124 $this->attrReadOnly($source, $attributes); 125 125 $this->readHelpHintAlert($source, $control); 126 126 $source[]='$topctrl = $ctrl;';
