I tried the Wp_editor in wordpress for the visual tab is working fine and the text tab is getting list order.
<?php
$settings = array(
'textarea_name' => 'message1',
'media_buttons' => true,
'tinymce' => array(
'theme_advanced_buttons1' => 'formatselect,|,bold,italic,underline,|,' .
'bullist,blockquote,|,justifyleft,justifycenter' .
',justifyright,justifyfull,|,link,unlink,|' .
',spellchecker,wp_fullscreen,wp_adv'
)
);
wp_editor( '', 'content', $settings );
?>
Also For the Visual Editor it should be appear like this
I don't Know what happen to the wordpress editor.
Any Suggestion would be great.