sjohnsonaz / BuildJS-Full

A simple utility for class definition, inheritance, dynamic loading, MVVM, Widgets, and backend MVC.
http://buildjs.com
0 stars 0 forks source link

Simplify Element and Form inheritance. #56

Open sjohnsonaz opened 10 years ago

sjohnsonaz commented 10 years ago

Each Element and FormElement is unique in what it requires. Account for variables like:

Element should be a fundamental element. All of its children will all have text and html attributes. Although it may be ultimately confusing, it may make sense to implement every possible fundamental HTML tag. Thus, even if we will implement other classes which use the tag, we will have a fundamental version here.

FormElement

FormElement should be any sort of <input> or similar tag. These will in general all possess a name and value attribute. Some may also have text and html attributes.

sjohnsonaz commented 10 years ago

Fix missing Labels in FormControl.

sjohnsonaz commented 10 years ago

Fixed missing Labels in FormControl.

sjohnsonaz commented 9 years ago

Moved Tabs from build.ui.tab to build.widget.tab namespace.