Class ::xowf::Property
::xowf::Property
 create ... \
           [ -allow_query_parameter (default "false") ]
Class Relations
- class: ::xotcl::Class
![[i]](/resources/acs-subsite/ZoomIn16.gif)
 
- superclass: ::xowiki::formfield::FormField
![[i]](/resources/acs-subsite/ZoomIn16.gif)
 
::xotcl::Class create ::xowf::Property \
     -superclass ::xowiki::formfield::FormField
Methods (to be applied on instances)
allow_query_parameter (setter)
get_default_from (scripted)
set :parampage $page
set :default [[:wf_context] get_property -source $page -name ${:name} -default ""]init (scripted)
set object [[:wf_context] object]
$object instvar instance_attributes
if {[info exists :default] && ![dict exists $instance_attributes ${:name}]} {
  dict set instance_attributes ${:name} ${:default}
  
}name (setter)
wf_context (scripted)
set max [info level]
for {set i 0} {$i < $max} {incr i} {
  if {![catch {set s [uplevel $i self]} msg]} {
    set obj [lindex $s 0]
    if {[$obj istype ::xowf::Context]} {
      
      return $obj
    }
  }
}
return [:info parent]