mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-04-09 22:37: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 : JSValue;
|
||||||
function render(aType : string) : JSValue;
|
function render(aType : string) : JSValue;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
TJSDataTableRowsAPI = Class external name 'Object' (TJSObject)
|
||||||
|
function data : JSValue;
|
||||||
|
end;
|
||||||
|
|
||||||
TJSDataTableAPI = Class external name 'DataTable' (TJSObject)
|
TJSDataTableAPI = Class external name 'DataTable' (TJSObject)
|
||||||
Public
|
Public
|
||||||
@ -539,6 +543,7 @@ Type
|
|||||||
function page() : integer;
|
function page() : integer;
|
||||||
function page(aPage : integer) : TJSDataTableAPI;
|
function page(aPage : integer) : TJSDataTableAPI;
|
||||||
function rows() : JSValue;
|
function rows() : JSValue;
|
||||||
|
function rows(Modifier : TDTSelectorModifier) : TJSDataTableRowsAPI;
|
||||||
function row() : JSValue;
|
function row() : JSValue;
|
||||||
function columns() : JSValue;
|
function columns() : JSValue;
|
||||||
function column() : JSValue;
|
function column() : JSValue;
|
||||||
|
Loading…
Reference in New Issue
Block a user