Checkbox
Radio Button
Hyperlink
Image
Date Picker
Rich Text
Decorator Panel
Flow Panel
Dock Panel
Tab Panel
Source Formatter
Upload files
 
License
Team
Google Code
Example
Source Code
CSS Style
<?php 
include_once 'phpmoko/ui/Form/CheckBox.php';
include_once 
'phpmoko/ui/FlowPanel.php';

class 
ModuleDemo implements WebModule
{
  function 
getWidget()
  {
    
// Create a Flow Panel
    
$flowPanel = new FlowPanel();
    
$flowPanel->setId("cwFlowPanel");

    
// Add some content to the panel
    
for ($i = 0; $i < 30; $i++) {
      
$checkbox = new CheckBox('Item '.$i);
      
$checkbox->addStyleName('cw-FlowPanel-checkBox');
      
$flowPanel->add($checkbox);
    }

    
// Return the content
    
return $flowPanel;
  }
}
?>
.pmk-FlowPanel {
}

.cw-FlowPanel-checkBox {
  margin-right: 20px;
}