vaadin combobox angular 2

时间:2017-05-02 06:48:16

标签: angular typescript combobox vaadin-elements

即时使用vaadin组合框进行角度2

并在我的HTML代码中

<div class="col-lg-6">
                        <vaadin-combo-box [(value)]="storecard1" label="Store Code" [items]="concept" item-label-path="MAP_Code"></vaadin-combo-box>
                    </div>

在我的组件中我把这段代码放在字符串

    constructor(
this._httpprovider.httpReq('http://192.168.1.40:5000/getdataemp','POST',{cardno:newValue},null).subscribe((data)=>{ 

                    var rData = [];
                    for (let i=0;i<data.length;i++){
                    rData.push(data[i]);
                    }
                    var store = rData.map(i=>(i.Store_ID)).toString();

                    this.storecard1 = store; << this part cant show the value to the combobox, its still make the combobox empty

            });
)

但在我的HTML中它不起作用,

ui没有变化

1 个答案:

答案 0 :(得分:0)

大多数聚合物元素无法在Angular 2中正确渲染。请参阅此适配器以使您的元素与Angular一起使用:https://github.com/platosha/angular-polymer