update class names
This commit is contained in:
parent
9499d4535f
commit
5f85efcf62
@ -28,7 +28,7 @@
|
|||||||
parent::__construct();
|
parent::__construct();
|
||||||
$this->HasButtons = false;
|
$this->HasButtons = false;
|
||||||
$this->TagName = "div";
|
$this->TagName = "div";
|
||||||
$this->ClassList[] = "Window";
|
$this->ClassList[] = "uwt-window";
|
||||||
$this->ParseChildElements = true;
|
$this->ParseChildElements = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -78,17 +78,17 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
$divHeader = new HTMLControl("div");
|
$divHeader = new HTMLControl("div");
|
||||||
$divHeader->ClassList[] = "Header";
|
$divHeader->ClassList[] = "uwt-header";
|
||||||
$spanTitle = new HTMLControl("span");
|
$spanTitle = new HTMLControl("span");
|
||||||
$spanTitle->ClassList[] = "Title";
|
$spanTitle->ClassList[] = "uwt-title";
|
||||||
$spanTitle->InnerHTML = $this->Title;
|
$spanTitle->InnerHTML = $this->Title;
|
||||||
$divHeader->Controls[] = $spanTitle;
|
$divHeader->Controls[] = $spanTitle;
|
||||||
|
|
||||||
$divContent = new HTMLControl("div");
|
$divContent = new HTMLControl("div");
|
||||||
$divContent->ClassList[] = "Content";
|
$divContent->ClassList[] = "uwt-content";
|
||||||
|
|
||||||
$divInnerContent = new HTMLControl("div");
|
$divInnerContent = new HTMLControl("div");
|
||||||
$divInnerContent->ClassList[] = "Content";
|
$divInnerContent->ClassList[] = "uwt-content";
|
||||||
foreach ($this->ContentControls as $ctl)
|
foreach ($this->ContentControls as $ctl)
|
||||||
{
|
{
|
||||||
$divInnerContent->Controls[] = $ctl;
|
$divInnerContent->Controls[] = $ctl;
|
||||||
@ -96,12 +96,12 @@
|
|||||||
$divContent->Controls[] = $divInnerContent;
|
$divContent->Controls[] = $divInnerContent;
|
||||||
|
|
||||||
$divLoading = new HTMLControl("div");
|
$divLoading = new HTMLControl("div");
|
||||||
$divLoading->ClassList[] = "Loading";
|
$divLoading->ClassList[] = "uwt-loading";
|
||||||
|
|
||||||
$divLoadingStatus = new HTMLControl("div");
|
$divLoadingStatus = new HTMLControl("div");
|
||||||
$divLoadingStatus->ClassList[] = "LoadingStatus";
|
$divLoadingStatus->ClassList[] = "LoadingStatus";
|
||||||
$divThrobber = new HTMLControl("div");
|
$divThrobber = new HTMLControl("div");
|
||||||
$divThrobber->ClassList[] = "Throbber";
|
$divThrobber->ClassList[] = "uwt-spinner";
|
||||||
$divLoadingStatus->Controls[] = $divThrobber;
|
$divLoadingStatus->Controls[] = $divThrobber;
|
||||||
|
|
||||||
$pLoadingStatus = new HTMLControl("p");
|
$pLoadingStatus = new HTMLControl("p");
|
||||||
@ -112,7 +112,7 @@
|
|||||||
$divContent->Controls[] = $divLoading;
|
$divContent->Controls[] = $divLoading;
|
||||||
|
|
||||||
$divFooter = new HTMLControl("div");
|
$divFooter = new HTMLControl("div");
|
||||||
$divFooter->ClassList[] = "Footer";
|
$divFooter->ClassList[] = "uwt-footer";
|
||||||
foreach ($this->FooterControls as $ctl)
|
foreach ($this->FooterControls as $ctl)
|
||||||
{
|
{
|
||||||
$divFooter->Controls[] = $ctl;
|
$divFooter->Controls[] = $ctl;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user