﻿/*
    icon =  Ext.MessageBox.INFO
            Ext.MessageBox.QUESTION
            Ext.MessageBox.WARNING
            Ext.MessageBox.ERROR
            
    buttons =   Ext.MessageBox.OKCANCEL
                Ext.MessageBox.YESNOCANCEL
                Ext.MessageBox.OK
    
    fn = functin(btn, text) ใส่ชื่อ function
*/

function funMessageBox(title, msg, icon ,buttons, fn)
{    
    Ext.MessageBox.show({
       title: title,
       msg: msg,
       buttons: buttons,
       fn: fn,
       icon: icon
    });
}
function showResultText(btn, text)
{
//        Ext.example.msg('Button Click', 'You clicked the {0} button and entered the text "{1}".', btn, text);
}

