Árvore de páginas

Versões comparadas

Chave

  • Esta linha foi adicionada.
  • Esta linha foi removida.
  • A formatação mudou.
Comentário: Revertida da versão 19

...

O primeiro parâmetro espera um objeto contendo três atributos: idversion e title, onde title não types, onde types não é obrigatório e os demais sim.

...

Bloco de código
languagejs
themeEclipse
titleminhawidget.js
var EcmDocumentUpdate = SuperWidget.extend({

	id: null,
	version: null,
	titletypes: null,
	
	bindings: {
		local: {
			'rename-document': ['click_renameDocument']
		}
	},
	
	init: function() {
		this.id = 10;
		this.version = 1000;
		this.title = "Título customizado"
	},
	
	renameDocument: function(el, ev) {
		var that = this;
		ECMBC.renameDocument({
			id: that.id,
			version: that.version,
			titlevalue: that.titlevalue
		}, function(err, data) {
			if(err) {
				return alert(err.responseText);
			}
			
			that.someFunc(data);
		});
	},
	
	someFunc: function(data) {
		//Qualquer coisa com o retorno de sucesso...
	}
});

...


Tela exibida ao chamar o componente

...

Image Added