ExtJS4: How to show validation error message next to textbox, combobox etc

前端 未结 6 671
旧巷少年郎
旧巷少年郎 2020-12-29 08:05

I need to implement validation messages that appear right next to invalid field. Any help would be appreciated.

6条回答
  •  一生所求
    2020-12-29 08:43

    Use msgTarget 'side' for validation in right side and msgTarget 'under' for bottom

         items: [{
                    xtype: 'textfield',
                    fieldLabel: 'Name',
                    allowBlank: false,
                    name: 'name',
                    msgTarget: 'side',
                    blankText: 'This should not be blank!'
                }]
    

提交回复
热议问题