views:

483

answers:

2

I have a grid, with contains form items. Example below. Link here. The form elements trigger a validator (ex: allowBlank: false), and pop up a callout. The callout continuously flip flops, and annoys the users. How to disable this callout.

            {   header: 'Item',                 
            width: 85, 
            sortable: true, 
              align : 'center',
            dataIndex: 'Item',
                editor: new Ext.form.TextField({
                     id: "ItemName",
                     blankText: "Item is required",
                     allowBlank: false,                 
                     selectOnFocus: true              
                })
         },
+2  A: 

Try adding errorSummary:false to the RowEditor config.

bmoeskau
Thanks. This is it.
Natkeeran
A: 

In the RowEditor.js file, set the following config:

errorSummary: false,

Natkeeran
Actually, do NOT edit the RowEditor.js source directly. Just pass the config when creating an instance in the app code, as I mentioned.
bmoeskau