onPricingFileChange: function (fileUpload, newValue, oldValue) {
var me = this,
format = ['pdf', 'doc', 'docx', 'jpg', 'png', 'xls', 'xlsx'],
files = fileUpload.fileInputEl.el.dom.files;
if (me.ieVersion() == 8) {
var names = fileUpload.getValue().split('\\');
fileUpload.emptyText = names[names.length - 1];
fileUpload.inputEl.dom.value = names[names.length - 1];
}
else {
if (files.length > 0) {
var name = files[0].name;
fileUpload.ariaEl.dom.value = name;
}
}
},