So after registering myManager, I registered this classe:
Seam.Remoting.type.javax$faces$model$SelectItem = function() {
| this._value = null;
| this._label = null;
| Seam.Remoting.type.javax$faces$model$SelectItem.prototype.getValue = function() {
return this._value; }
| Seam.Remoting.type.javax$faces$model$SelectItem.prototype.getLabel = function() {
return this._label; }
| Seam.Remoting.type.javax$faces$model$SelectItem.prototype.setValue =
function(_value) { this._value = _value; }
| Seam.Remoting.type.javax$faces$model$SelectItem.prototype.setLabel =
function(_label) { this._label = _label; }
| }
|
| Seam.Remoting.type.javax$faces$model$SelectItem.__name =
"javax.faces.model.SelectItem";
| Seam.Remoting.type.javax$faces$model$SelectItem.__metadata = [
| {field: "_value", type: "str"},
| {field: "_label", type: "str"},
| ];
|
|
| Seam.Remoting.registerType(Seam.Remoting.type.javax$faces$model$SelectItem);
|
Looking at the javascript code, it should then replace the generated stub.
Then I tried again without success...
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3962582#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...