Take the 2-minute tour ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to make simple application from this like https://github.com/nimbly/angular-formly I am able to generate the form from json.my problem is that I am not able to display option of drop down.As I I read the document .but I don't know where I am wrong..?

"inputValues": {
                    "True": "true",
                    "False": "false"
                },

http://plnkr.co/edit/tuMl02QcvZkCCIJPTW0r?p=preview. When user click the button it show the form .In that there is parameter "add" which is drop down.I saw the documentation it is taking option as a key so I change input values to key .

I have two option true and false but it not display. Secondly there is four field it display only three why ?

share|improve this question
    
Your form config doesn't match the example given in the document. –  runTarm Aug 12 '14 at 16:40
    
I change the con config using change method.please check my change method changeData –  Shruti Aug 12 '14 at 16:41
    
Yeah, it still doesn't match. The options config for select tag in the document is an Array containing objects with property name. But your config is an Object. –  runTarm Aug 12 '14 at 16:44
    
ok wait checking..!! and why it show three field ..? –  Shruti Aug 12 '14 at 16:46
    
There is no input type 'EMAIL' in your map variable. –  runTarm Aug 12 '14 at 16:47

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.