| Summary: | Support for GET, ADD, etc in JavaScript to access browser storage | ||
|---|---|---|---|
| Product: | z_Archived | Reporter: | Will Smythe <smythew> |
| Component: | EDT | Assignee: | Project Inbox <edt.javascriptgen-inbox> |
| Status: | NEW --- | QA Contact: | |
| Severity: | enhancement | ||
| Priority: | P3 | CC: | greer, lasher, mheitz, tww |
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows XP | ||
| Whiteboard: | |||
HTML5 blog on EGL Cafe in February 2011: https://www.ibm.com/developerworks/mydeveloperworks/blogs/3e2b35ae-d3b1-4008-adee-2b31d4be5c92/entry/previewing_two_html5_features_for_use_in_egl_applications17?lang=en changing from defect to enhancement (Importance = Enhancement) |
In early 2011, we delivered an EGL library for HTML5 that included support for local/session storage within the browser. We should consider supporting GET, ADD, and other appropriate EGL data access statements to allow "native" (i.e. via EGL statements) access of browser storage. Example: record MyRecord type KeyedRecord { key = id } id String; firstName String; lastName String; end ... rec1 MyRecord { id = "12", firstName = "Will" }; add rec1; .. get rec1; writestdout(rec1.firstName);