%3 ::xo::Table::TABLE::Field ::xo::Table::TABLE::Field get_orderby render render-data renderSortLabels ::xo::Drawable ::xo::Drawable _ render_localizer ::xo::Table::TABLE::Field->::xo::Drawable ::xo::tdom::AttributeManager ::xo::tdom::AttributeManager ::xo::Drawable->::xo::tdom::AttributeManager ::xo::Table::YUIDataTableRenderer::AnchorField ::xo::Table::YUIDataTableRenderer::AnchorField render-data ::xo::Table::YUIDataTableRenderer::AnchorField->::xo::Table::TABLE::Field

Class ::xo::Table::YUIDataTableRenderer::AnchorField

::xo::Table::YUIDataTableRenderer::AnchorField[i] create ...

In addition to the standard TableWidget's AnchorField, we also allow the attributes
  • onclick
  • target
Defined in packages/xowiki/tcl/yui-procs.tcl

Class Relations

  • class: ::xotcl::Class[i]
  • superclass: ::xo::Table::TABLE::Field[i]
::xotcl::Class create ::xo::Table::YUIDataTableRenderer::AnchorField \
     -superclass ::xo::Table::TABLE::Field

Methods (to be applied on instances)

  • render-data (scripted)

    set __name ${:name}
    if {[$line exists $__name.href] &&
        [set href [$line set $__name.href]] ne ""} {
      # use the CSS class rather from the Field than not the line
      set CSSclass ${:CSSclass}
      if {[$line exists $__name.CSSclass]} {
        set lineCSSclass [$line set $__name.CSSclass]
        if {$lineCSSclass ne ""} {
          append CSSclass " " $lineCSSclass
        }
      }
      $line instvar   [list $__name.title title]  [list $__name.target target]  [list $__name.onclick onclick]
      html::a [:get_local_attributes href title {CSSclass class} target onclick] {
        return "[next]"
      }
    }
    next