Changeset 1850 for trunk/framework/Web/UI/WebControls/TCheckBoxList.php
- Timestamp:
- 04/08/2007 10:32:50 PM (21 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/framework/Web/UI/WebControls/TCheckBoxList.php
r1453 r1850 53 53 private $_isEnabled; 54 54 private $_changedEventRaised=false; 55 private $_dataChanged=false; 55 56 56 57 /** … … 316 317 { 317 318 $this->_changedEventRaised=true; 318 return true;319 return $this->_dataChanged=true; 319 320 } 320 321 } … … 392 393 393 394 /** 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 /** 394 405 * Returns the value to be validated. 395 406 * This methid is required by IValidatable interface.
