1. Question: Which is the correct syntax to make an alert message in ExtJS?

    A
    Ext.Msg.MessageBox('Title','Message')

    B
    Ext.Msg.prompt('Title','Message')

    C
    Ext.Msg.alert('Title','Message')

    D
    Ext.Msg.alert('Message')

    Note: Not available
    1. Report
  2. Question: Which function is used to make a confirmation message in ExtJS?

    A
    Ext.Msg.confirm('title','message',function(btn,text){ });

    B
    Ext.Msg.YesNo('title','message',function(btn,text){ });

    C
    Ext.Msg.alert('title','message',function(btn,text){ });

    D
    Ext.Msg.show('title','message',function(btn,text){ });

    Note: Not available
    1. Report
  3. Question: What is the correct syntax to populate a window with plain html in ExtJS?

    A
    var w=new Ext.Window({ height: 150, width: 200, title:'Title', html: '<h1>Oh</h1><p>H1 is for headline</p>' });

    B
    var w=new Ext.Window({ height: 150, width: 200, title:'Title', html: '<h1>Oh</h1><p>H1 is for headline</p>' }); w.show();

    C
    var w=new Ext.MessageBox({ height: 150, width: 200, title:'Title', html: '<h1>Oh</h1><p>H1 is for headline</p>' });

    D
    var w=new Ext.MessageBox({ height: 150, width: 200, title:'Title', html: '<h1>Oh</h1><p>H1 is for headline</p>' }); w.show();

    Note: Not available
    1. Report
  4. Question: Which are the correct values for 'msg' option of Ext.Msg.show() function to display custom message box?

    A
    Ext.Msg.ERROR

    B
    Ext.Msg.INFO

    C
    Ext.Msg.QUESTION

    D
    Ext.Msg.WARNING

    E
    Ext.Msg.CANCEL

    F
    Ext.Msg.OK

    G
    Ext.Msg.OKCANCEL

    H
    Ext.Msg.YESNO

    I
    Ext.Msg.YESNOCANCEL

    J
    Ext.Msg.INFORMATION

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