protected function RenderBeginTag()
 {
     $this->Attributes[] = new WebControlAttribute("title", $this->Value . " " . $this->Type);
     $this->ClassList[] = "ResourceReference";
     $this->Content = $this->Value;
     parent::RenderBeginTag();
 }
Example #2
0
 public function __construct($id, $userName)
 {
     parent::__construct($id);
     $this->Buddies = array();
     $this->UserName = $userName;
     $this->Panels = array();
     $this->PlaceholderText = "Type your message and press ENTER to send...";
     $this->Position = ChatBarPosition::Bottom;
 }
Example #3
0
 public function __construct($id)
 {
     parent::__construct($id);
     $this->ContentURL = null;
     $this->RequestMethod = "GET";
 }
Example #4
0
 protected function RenderBeginTag()
 {
     parent::RenderBeginTag();
 }