1. Question: Which method is used to make our grid editable?

    A
    Ext.grid.Grid_Panel

    B
    Ext.grid.Editor_GridPanel

    C
    Ext.grid.Gridpanel

    D
    Ext.grid.EditorGridPanel

    Note: Not available
    1. Report
  2. Question: Where the little red tick  of dirty cells  appears?

    A
    upper-right corner

    B
    lower-right corner

    C
    upper-left corner

    D
    lower-left corner

    Note: Not available
    1. Report
  3. Question: What is the basic requirements for each field to editting more cells of data?

    A
    {header:"Title", data_Index:'title', editor: title_edit}

    B
    {header:"Title", dataIndex:'title', editor: 'title_edit'}

    C
    {header:"title", dataIndex:'Title', editor: title_edit}

    D
    {header:"Title", dataIndex:'title', editor: title_edit}

    Note: Not available
    1. Report
  4. Question: By calling which function we can save the changes to  the primary data store?

    A
    reject

    B
    commit

    C
    request

    D
    none

    Note: Not available
    1. Report
  5. Question: Which variable is used for the selection model to retrieve the row that has been selected?

    A
    sm

    B
    sel

    C
    grid.getStore().remove(sel)

    D
    All

    Note: Not available
    1. Report
  6. Question: What's are available to us when using the after edit  event?

    A
    grid,record,field

    B
    value,originalValue

    C
    row,column

    D
    All

    Note: Not available
    1. Report
  7. Question: Which is the unique identifier for a row?

    A
    insert id

    B
    insert_row

    C
    insert row

    D
    None

    Note: Not available
    1. Report
  8. Question: Which syntax is used to editting a date value?

    A
    release_date = new.Ext.form.DateField({ format : 'm/d/Y', });

    B
    release_date = new.Ext.form.DateField({ format : 'm/d/Y' })

    C
    release_date = new.Ext.form.DateField({ format : 'm/d/Y' });

    D
    release_date = new.Ext.form.dateField({ format : 'm/d/Y' });

    Note: Not available
    1. Report
  9. Question: reject handler are used for what?

    A
    reject a record

    B
    reject a row

    C
    discard the changes

    D
    reject a commit

    Note: Not available
    1. Report
  10. Question: Which scenario is parfect for editting a combo box?

    A
    var genre_edit = new Ext.form.ComboBox({
     typeAhead : true,
     triggerAction :'all',
     mode : 'local', 
     store : 'genres',
     displayField : 'genre',
     valueField : 'id'
    });

    B
    var genre_edit = new Ext.form.ComboBox({
     typeAhead : true,
     triggerAction :'all',
     mode : 'local', 
     store : genres,
     displayField : 'genre',
     valueField : 'id'
    });

    C
    var genre_edit = new Ext.form.ComboBox({
     typeAhead : 'true',
     triggerAction :'all',
     mode : 'local', 
     store : genres,
     displayField : 'genre',
     valueField : 'id'
    });

    D
    var genre_edit = new. Ext.form.ComboBox({
     typeAhead : true,
     triggerAction :'all',
     mode : 'local', 
     store : genres,
     displayField : 'genre',
     valueField : 'id'
    });

    Note: Not available
    1. Report
Copyright © 2024. Powered by Intellect Software Ltd