Changeset 989 for trunk


Ignore:
Timestamp:
Apr 8, 2008, 9:49:29 AM (16 years ago)
Author:
gah
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gui/scripts/pager.tcl

    r910 r989  
    5454    public method page {args}
    5555    public method current {args}
     56    public method busy { how }
    5657
    5758    protected method _layout {}
     
    631632    }
    632633}
     634
     635# ----------------------------------------------------------------------
     636# CONSTRUCTOR
     637# ----------------------------------------------------------------------
     638itcl::body Rappture::Pager::busy { bool } {
     639    if { $bool } {
     640        blt::busy hold $itk_component(breadcrumbs)
     641        $itk_component(back) configure -state disabled
     642    } else {
     643        blt::busy release $itk_component(breadcrumbs)
     644        $itk_component(back) configure -state normal
     645    }
     646}
Note: See TracChangeset for help on using the changeset viewer.