/**
  * Restore the state of the control. The control will have already been
  * created and initialized. Subclasses should verify that the restored state is still valid for the data
  * available.
  * @param mixed $state
  */
 protected function PutState($state)
 {
     parent::PutState($state);
     if (isset($state['selectedId'])) {
         $this->SelectedId = $state['selectedId'];
     }
 }