<html><head></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; ">Howdy Dietmar,<div><br></div><div>Wondering if you could help me with a little roadblock:</div><div><br></div><div><div>        me.column2 = [</div><div>            {  </div><div>                xtype: 'textfield',</div><div>                name: 'firstname',</div><div>                fieldLabel: 'First Name'</div><div>            },</div><div>            {  </div><div>                xtype: 'textfield',</div><div>                name: 'lastname',</div><div>                fieldLabel: 'Last Name'</div><div>            },</div><div>            new Ext.form.ComboBox({</div><div>                fieldLabel: 'Group',</div><div>                hiddenName: 'groupid',</div><div>                store: new Ext.data.Store({</div><div>                    model: 'combo-groups',</div><div>                    proxy: {</div><div>                        type: 'pve',</div><div>                        url: "/api2/json/access/groups"</div><div>                    },</div><div>                    sorters: {</div><div>                        property: 'groupid',</div><div>                        order: 'DESC'</div><div>                    }</div><div>                }),</div><div>                valueField: 'groupid',</div><div>                displayField: 'groupid',</div><div>                typeAhead: true,</div><div>                mode: 'local',</div><div>                triggerAction: 'all',</div><div>                emptyText: 'No Groups Selected',</div><div>                selectOnFocus: true</div><div>            })</div><div>        ];</div><div><br></div><div>When I click the combo box it gives the following error in javascript console:</div><div><br></div><div><meta charset="utf-8"><span class="Apple-style-span" style="font-family: Menlo, monospace; color: rgb(255, 0, 0); font-size: 11px; white-space: pre-wrap; "><a href="https://192.168.1.106:8006/api2/json/access/groups?query=" class="console-message-url webkit-html-resource-link" title="https://192.168.1.106:8006/api2/json/access/groups?query=" line_number="0" preferred_panel="scripts" style="box-sizing: border-box; float: right; margin-left: 4px; color: rgb(84, 84, 84); cursor: pointer; max-width: 100%; ">groups</a><meta charset="utf-8"><a href="https://192.168.1.106:8006/api2/json/access/groups?query=" class="console-message-url webkit-html-resource-link" title="https://192.168.1.106:8006/api2/json/access/groups?query=" line_number="0" preferred_panel="scripts" style="box-sizing: border-box; float: right; margin-left: 4px; color: rgb(84, 84, 84); cursor: pointer; max-width: 100%; ">groups</a><span style="box-sizing: border-box; ">GET <a href="https://192.168.1.106:8006/api2/json/access/groups?query=" class="webkit-html-resource-link" title="https://192.168.1.106:8006/api2/json/access/groups?query=" style="box-sizing: border-box; color: rgb(84, 84, 84); cursor: pointer; max-width: 100%; ">https://192.168.1.106:8006/api2/json/access/groups?query=</a> 400 (Paramter verification failed.)</span></span></div>
<br></div><div><br></div><div>Thanks,</div><div>Seth</div></body></html>