JQUERY EasyUI - $.messager.alert position -


i using easyui messager.alert control.

is there way show $.messager.alert on top center of screen?

$.messager.alert({              title: title,              msg: message,              icon: 'info',              width: 550,           }) 

use style option on messager.

see here: message box position

example

$.messager.show({     title:'my title',     msg:'the message content',     showtype:'slide',     style:{         right:'',         top:document.body.scrolltop+document.documentelement.scrolltop,         bottom:''     } }); 

or in case of specific example:

$.messager.alert({      title: title,      msg: message,      icon: 'info',      width: 550,      style:{          right:'',          top:document.body.scrolltop+document.documentelement.scrolltop,          bottom:''      }  }) 

Comments

Popular posts from this blog

Java 3D LWJGL collision -

spring - SubProtocolWebSocketHandler - No handlers -

methods - python can't use function in submodule -