소스 검색

* Add Value to TJSIDBCursor

michael 7 년 전
부모
커밋
9439a02b76
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      packages/rtl/web.pas

+ 2 - 0
packages/rtl/web.pas

@@ -1187,6 +1187,7 @@ Type
   private
     FDirection: string; external name 'direction';
     FKey: JSValue; external name 'key';
+    FValue : JSValue; external name 'value';
     FPrimaryKey: JSValue; external name 'primaryKey';
     FSource: JSValue; external name 'source';
     FSourceAsIndex: TJSIDBIndex; external name 'source';
@@ -1204,6 +1205,7 @@ Type
     property sourceAsStore : TJSIDBObjectStore read FSourceAsStore;
     property sourceAsIndex : TJSIDBIndex read FSourceAsIndex;
     property key : JSValue read FKey;
+    Property Value : JSValue Read FValue;
     property primaryKey : JSValue read FPrimaryKey;
     property direction : string read FDirection;
   end;