Weird html generated for input contral

following html generated:

<textarea 
     readonly="true" 
    style="width:274px;"  '="" 
    id="x1406173785413" 
    name="$textarea1" 
    class="webix_inp_textarea">Round 10 closed</textarea>

from:

      view          : 'textarea',
      id            : id.ROUND_STATUS,
      width         : 280,
      height        : 98,
      readonly      : true,
      align         : 'center',
      label         : 'Auction status',
      labelAlign    : 'center',
      labelPosition : 'top'

Notes:

  1. the weird '="" in the html.
  2. even though ‘align’ was set to ‘center’, no text-align style attribute was actually set.

(1) I can confirm the issue. Fix will be included in the next build
(2) align is the align inside of parent control and not related to the text align. Use “css” property for such customization

http://webix.com/snippet/ee09e7e4

thanks.