mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-09-06 19:10:10 +02:00
* Forgot to commit
This commit is contained in:
parent
bd2dd96c45
commit
620cdcd7d0
@ -531,6 +531,7 @@ Type
|
||||
property SelectedIndex;
|
||||
Property Multiple;
|
||||
property size;
|
||||
property Classes;
|
||||
end;
|
||||
|
||||
{ TLabelWidget }
|
||||
@ -797,6 +798,13 @@ Type
|
||||
Property OnFooterRowClick;
|
||||
end;
|
||||
|
||||
{ TDivWidget }
|
||||
|
||||
TDivWidget = Class(TWebWidget)
|
||||
Protected
|
||||
Function HTMLTag : String; override;
|
||||
end;
|
||||
|
||||
Function ViewPort : TViewPort;
|
||||
|
||||
Const
|
||||
@ -822,6 +830,13 @@ end;
|
||||
Const
|
||||
CellTags : Array[TRowKind] of string = ('th','td','td');
|
||||
|
||||
{ TDivWidget }
|
||||
|
||||
function TDivWidget.HTMLTag: String;
|
||||
begin
|
||||
Result:='DIV';
|
||||
end;
|
||||
|
||||
{ TSelectWidget.TStringsSelectOptionEnumerator }
|
||||
|
||||
constructor TSelectWidget.TStringsSelectOptionEnumerator.Create(ASelect: TCustomSelectWidget);
|
||||
|
Loading…
Reference in New Issue
Block a user