angular-schema-form-material
angular-schema-form-material copied to clipboard
Angular Material decorator for Angular Schema Form
On angularJS this onClick event will work. ``` { "type": "button", "style": "btn-danger", "title": "No", "onClick": "sayNo()" } ``` But not with angular-schema-form-material.
Single escaped quotes were creating a prematurely terminated string as mentioned in #6
The datepicker is not working. When the date is selected from the datepicker the form always stays as invalid. I tried it using angular-material 1.0.7. I also clone the repo...
Hi @Anthropic . I've just restructured your example code, just to make it easy to read and analyze.
The form doesn't show values of model until click input. After some investigation I saw that the element md-input-container doesn't have the css class md-input-has-value when the field has value...
Validation error messages, like 'field is required', 'pattern does not match', are not displayed in UI. The same works as expected with bootstrap decorator. I have posted the issue in...
action.html probably missing something to handle the onClick that is passed. e.g ``` { type: 'actions', items: [ { type: 'button', "style": "md-warn", title: 'Regress', onClick: () => { console.log('REG');...
Hi, I am creating a form with only inputs of text, and is working ok. but when I put a model with data previusly loaded, the text int the input...
I am saving off my form and repopulating at a later time. Everything renders fine except for the checkbox.html. Whenever I load up using a previous model, schema form material...
Repeating this process on a required field was creating duplicated error messages: 1. focus field 2. fill field 3. blur field 4. focus field 5. empty field 6. blur field...