UNPKG

angular2-json-schema-form

Version:
23 lines (22 loc) 384 B
{ "schema": { "text": { "type": "string", "title": "Text" } }, "form": [ { "key": "text", "onChange": function (evt) { var value = $(evt.target).val(); if (value) alert(value); } }, { "type": "button", "title": "Click me", "onClick": function (evt) { evt.preventDefault(); alert('Thank you!'); } } ] }