merging form fixes
This commit is contained in:
parent
cf4dbc93a3
commit
709ed6971a
5 changed files with 49 additions and 0 deletions
|
|
@ -169,6 +169,7 @@ sub toHtml {
|
|||
my %options;
|
||||
tie %options, "Tie::IxHash";
|
||||
$self->set('options', $self->getTypes);
|
||||
$self->set('sortByValue', 1);
|
||||
return $self->SUPER::toHtml();
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -90,6 +90,18 @@ sub getName {
|
|||
return WebGUI::International->new($session, 'WebGUI')->get('SelectRichEditor formName');
|
||||
}
|
||||
|
||||
#-------------------------------------------------------------------
|
||||
|
||||
=head2 isDynamicCompatible ( )
|
||||
|
||||
A class method that returns a boolean indicating whether this control is compatible with the DynamicField control. Returns 0.
|
||||
|
||||
=cut
|
||||
|
||||
sub isDynamicCompatible {
|
||||
return 0;
|
||||
}
|
||||
|
||||
#----------------------------------------------------------------------------
|
||||
|
||||
=head2 new
|
||||
|
|
|
|||
|
|
@ -52,6 +52,18 @@ sub getName {
|
|||
|
||||
#-------------------------------------------------------------------
|
||||
|
||||
=head2 isDynamicCompatible ( )
|
||||
|
||||
A class method that returns a boolean indicating whether this control is compatible with the DynamicField control. Returns 0.
|
||||
|
||||
=cut
|
||||
|
||||
sub isDynamicCompatible {
|
||||
return 0;
|
||||
}
|
||||
|
||||
#-------------------------------------------------------------------
|
||||
|
||||
=head2 toHtmlWithWrapper ( )
|
||||
|
||||
Renders the form field to HTML as a table row. The row is not displayed because there is nothing to display, but it may not be left away because <input> may not be a child of <table> according to the XHTML standard.
|
||||
|
|
|
|||
|
|
@ -134,6 +134,18 @@ sub getName {
|
|||
|
||||
#-------------------------------------------------------------------
|
||||
|
||||
=head2 isDynamicCompatible ( )
|
||||
|
||||
A class method that returns a boolean indicating whether this control is compatible with the DynamicField control. Returns 0.
|
||||
|
||||
=cut
|
||||
|
||||
sub isDynamicCompatible {
|
||||
return 0;
|
||||
}
|
||||
|
||||
#-------------------------------------------------------------------
|
||||
|
||||
=head2 toHtml ( )
|
||||
|
||||
Renders a template picker control.
|
||||
|
|
|
|||
|
|
@ -2645,6 +2645,18 @@ div.tabs {
|
|||
context=> 'Form Type Name, as in "Object Class Name"',
|
||||
},
|
||||
|
||||
'SubscriptionGroup formName' => {
|
||||
message => q|Subscription Group|,
|
||||
lastUpdated => 0,
|
||||
context=> 'form field type',
|
||||
},
|
||||
|
||||
'SelectRichEditor formName' => {
|
||||
message => q|Choose Rich Editor|,
|
||||
lastUpdated => 0,
|
||||
context=> 'form field type',
|
||||
},
|
||||
|
||||
'fieldType' => {
|
||||
message => q|Field Type|,
|
||||
lastUpdated => 0,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue