I want to share this plugin and widget that I use for testing new features of Raxan 1.0 Final Release.
There is RichTable Plugin that return a dataset from table that is passed with widget property.
So, in the page, is only need add this:
- Code: Select all
<?php
require_once 'raxan/pdi/autostart.php';
class RichTablePage extends RaxanWebPage {
protected function _load(){
$this->loadWidget("table");
$mytable = new RichTableWidget("table_container");
$mytable->tablename = "mytablename";
}
}
?>
<div id="table_container"></div>
I want to extend this by adding event that generate form for editing and inserting data into table
with a modal box that display form generate by other plugin FormBuilder from db.
Enjoy!