mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-04-05 00:47:47 +02:00
Add parameter option to rows().
This commit is contained in:
parent
e26e7bb7c6
commit
b1e9f6de8c
@ -523,6 +523,10 @@ Type
|
||||
function render : JSValue;
|
||||
function render(aType : string) : JSValue;
|
||||
end;
|
||||
|
||||
TJSDataTableRowsAPI = Class external name 'Object' (TJSObject)
|
||||
function data : JSValue;
|
||||
end;
|
||||
|
||||
TJSDataTableAPI = Class external name 'DataTable' (TJSObject)
|
||||
Public
|
||||
@ -539,6 +543,7 @@ Type
|
||||
function page() : integer;
|
||||
function page(aPage : integer) : TJSDataTableAPI;
|
||||
function rows() : JSValue;
|
||||
function rows(Modifier : TDTSelectorModifier) : TJSDataTableRowsAPI;
|
||||
function row() : JSValue;
|
||||
function columns() : JSValue;
|
||||
function column() : JSValue;
|
||||
|
Loading…
Reference in New Issue
Block a user