mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-08-22 09:29:25 +02:00
Add parameter option to rows().
This commit is contained in:
parent
e26e7bb7c6
commit
b1e9f6de8c
@ -524,6 +524,10 @@ Type
|
|||||||
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
|
||||||
context : TJSObject;
|
context : TJSObject;
|
||||||
@ -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