您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12345678910111213
  1. wn.ui.toolbar.NewDialog = wn.ui.toolbar.SelectorDialog.extend({
  2. init: function() {
  3. this._super({
  4. title: "New Record",
  5. execute: function(val) {
  6. new_doc(val);
  7. },
  8. });
  9. // get new types
  10. this.set_values(profile.can_create.join(',').split(','));
  11. }
  12. });