Displaying 2 results from an estimated 2 matches for "basecl".
Did you mean:
asecl
2004 May 21
0
Failure to preserve package attribute when coercing S4 objects (PR#6904)
...rived class has no additional slots.
This is a problem because the 'new' function relies on the exact identity
of the class, including the package attribute.
This can clearly be worked around by the introduction of dummy slots, but it
took me some time to track down.
> setClass("baseClass",representation(a="numeric"))
[1] "baseClass"
> setClass("fancyClass",contains="baseClass")
[1] "fancyClass"
>
setClass("fancyClassExtraSlots",representation(b="numeric"),contains="baseCl
ass")
[1] "f...
2011 Apr 14
1
a little problem with extJS & log in form
...redirect_to :action=> ''login''
end
end
def logout
if session[:user_id]
reset_session
redirect_to :action=> ''login''
end
end
end
Have login.js
var userform = new Ext.form.FormPanel({
baseCls: ''x-plain'',
labelWidth: 75,
id: ''userform'',
method: ''POST'',
url:''/user/authenticate'',
defaultType: ''textfield'',
items: [{
fieldLabel: ''...