Show
Ignore:
Timestamp:
04/08/2007 10:32:50 PM (21 months ago)
Author:
xue
Message:

Added getDataChanged() to IPostBackDataHandler

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/framework/Web/UI/WebControls/TCheckBoxList.php

    r1453 r1850  
    5353        private $_isEnabled; 
    5454        private $_changedEventRaised=false; 
     55        private $_dataChanged=false; 
    5556 
    5657        /** 
     
    316317                                                { 
    317318                                                        $this->_changedEventRaised=true; 
    318                                                         return true; 
     319                                                        return $this->_dataChanged=true; 
    319320                                                } 
    320321                                        } 
     
    392393 
    393394        /** 
     395         * Returns a value indicating whether postback has caused the control data change. 
     396         * This method is required by the IPostBackDataHandler interface. 
     397         * @return boolean whether postback has caused the control data change. False if the page is not in postback mode. 
     398         */ 
     399        public function getDataChanged() 
     400        { 
     401                return $this->_dataChanged; 
     402        } 
     403 
     404        /** 
    394405         * Returns the value to be validated. 
    395406         * This methid is required by IValidatable interface.