Hi Support,
Can I use the inputs package controls without creating a view, as I need them to replace a plain html form ? As in the example below :
<?php
use \koolreport\inputs\TextBox;?>
<label>Entity name</label>
<?php TextBox::create([
"name"=>"entityName",
"dataStore"=>$this->dataStore('result_view')
]);
?>
Then, I would create a class file, a view file and an index. Thanks in advance for your reply.