Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
R
rjs_json_form
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boris Kocherov
rjs_json_form
Commits
54d6522b
Commit
54d6522b
authored
Feb 22, 2019
by
Boris Kocherov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add wizard in xmla demo
parent
634dda81
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
560 additions
and
0 deletions
+560
-0
demo/xmla_connection/olap_wizard.json
demo/xmla_connection/olap_wizard.json
+34
-0
demo/xmla_connection/wizard.html
demo/xmla_connection/wizard.html
+33
-0
demo/xmla_connection/wizard.js
demo/xmla_connection/wizard.js
+493
-0
No files found.
demo/xmla_connection/olap_wizard.json
0 → 100644
View file @
54d6522b
{
"$schema"
:
"http://json-schema.org/draft-07/schema"
,
"title"
:
"OLAP Query parameters"
,
"type"
:
"object"
,
"definitions"
:
{
"choice"
:
{
"type"
:
"array"
,
"uniqueItems"
:
true
,
"items"
:
{
"$ref"
:
"urn:jio:choice.json"
}
}
},
"properties"
:
{
"connection_name"
:
{
"$ref"
:
"urn:jio:remote_connections.json"
},
"parameters"
:
{
"type"
:
"object"
,
"additionalProperties"
:
false
,
"properties"
:
{
"columns"
:
{
"title"
:
"columns"
,
"$ref"
:
"#/definitions/choice"
},
"rows"
:
{
"title"
:
"rows"
,
"$ref"
:
"#/definitions/choice"
}
}
}
},
"additionalProperties"
:
false
}
\ No newline at end of file
demo/xmla_connection/wizard.html
0 → 100644
View file @
54d6522b
<!doctype html>
<html>
<head>
<meta
charset=
"utf-8"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1"
>
<title>
Demo UI OLAP Query editor based on JSON Schema form generator
</title>
<link
rel=
"stylesheet"
href=
"gadget_erp5_nojqm.css"
>
<script
src=
"rsvp.js"
></script>
<script
src=
"renderjs.js"
></script>
<script
src=
"jio.js"
></script>
<script
src=
"Xmla-compiled.js"
></script>
<script
src=
"wizard.js"
></script>
</head>
<body>
<div
data-role=
"page"
>
<div
role=
"main"
class=
"ui-content gadget-content"
>
<section
class=
"ui-content-header-plain"
>
<h3
class=
"ui-content-title ui-body-c"
>
Xmla connection settings form
</h3>
</section>
<div
data-gadget-url=
"jsonform.gadget.html"
data-gadget-scope=
"olap_wizard"
data-gadget-sandbox=
"public"
></div>
<br>
</div>
</div>
</body>
</html>
\ No newline at end of file
demo/xmla_connection/wizard.js
0 → 100644
View file @
54d6522b
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment