(Решено / Solved) Label у fieldset меняется только один раз / Label changes have fieldset only once

Добрый день.
Не могу понять где засада, label у fieldset можно изменить только один раз (ткнуть по дереву):
http://webix.com/snippet/9349b257
При этом другой на другом примере всё работает: http://webix.com/snippet/6822e05c

Подскажите, что я делаю неправильно?

Good afternoon. I can not understand where the ambush, label at the fieldset can be changed only once (to stick on wood): http://webix.com/snippet/9349b257 In this example, the other on the other it works: http://webix.com/snippet/6822e05c

Tell me what am I doing wrong?

В общем, поддержка либо игнорит, либо сама не в курсе.
Сделал сам через jquery: http://webix.com/snippet/c6ea0f46

In general, support for either ignore or do not know myself.
DIY through jquery: http://webix.com/snippet/c6ea0f46

Всё наврал, не смотрите предыдущий ответ. Проблема в том, что, как я понял, создавались новые формы, а старые не удалялись, поэтому возникали забавные коллизии.
В общем проблема была в неправильном добавлении формы, нужно было использовать не:
webix.ui(gdata, $$(‘workbench’));
а две комбинации:
$$(“workbench”).removeView(“myForm”);
$$(‘workbench’).addView(gdata, 0);
В итоге всё нормально заработало: http://webix.com/snippet/5318e86e

I still lied, did not see the previous answer. The problem is that, as I understand it, to create new forms, and old ones are not removed, so there were amusing conflict.
In general, the problem was in the wrong form addition need not be used:
webix.ui(gdata, $$(‘workbench’));
and two combinations:
$$(“workbench”).removeView(“myForm”);
$$(‘workbench’).addView(gdata, 0);
In the end everything worked fine: http://webix.com/snippet/5318e86e