/**
  * Just to make sure the CMS looks pretty, force a capital letter and the HexCode to lowercase
  */
 public function onBeforeWrite()
 {
     $this->Title = ucfirst($this->Title);
     $this->HexCode = strtolower($this->HexCode);
     parent::OnBeforeWrite();
 }