Ticket #18 (assigned enhancement)
Build HTML wrappers
| Reported by: | VexedPanda | Owned by: | somebody |
|---|---|---|---|
| Priority: | important | Milestone: | 1.2 |
| Component: | QForms | Version: | |
| Keywords: | Cc: |
Description
It would be nice to have PHP-based OO wrappers for common HTML elements. These would be very simple QHtml based controls with no events, and would basically be a way to represent and control rendering of HTML elements.
eg:
$li = new QHtmlList($this->pnlSummary);
$li->Tag = ‘ul’;
$li->Name = QApplication::Translate(‘A ul list’);
$item1 = $li->AddItem?(‘Some Text’);
$item2 = $li->AddItem?(‘Some other text’);
$li->RemoveItem?($item1);
Attachments
Change History
Note: See
TracTickets for help on using
tickets.

