05-03-2018, 10:45 AM
Did check at my own.. in froms.php did change in the function displayView. At the begin of the Form add <div class="row"> after the form header / csrf. And after the formField view loop the closing </div>
function displayView($view, $opts = []){
.........
<input type="hidden" name="csrf" value="<?=Token::generate();?>" />
....
<div class="row">
<?php
foreach ($fields as $f){
.....
formField($fld);
.....
}
</div> <!-- end div from row -->
Sure I can do more changes to fit the needs of different design. But have to change it always if Userspice does an update :-(
Do you have any plan to extend this Forms functionality?
Like: Have in the Forms View admin Custom Raw Html fields. 1. as begin Form View 2. for each field begin and end raw html 3. a form view end raw html.
In addition do you plan to implement a delete, update function for DB rows?
function displayView($view, $opts = []){
.........
<input type="hidden" name="csrf" value="<?=Token::generate();?>" />
....
<div class="row">
<?php
foreach ($fields as $f){
.....
formField($fld);
.....
}
</div> <!-- end div from row -->
Sure I can do more changes to fit the needs of different design. But have to change it always if Userspice does an update :-(
Do you have any plan to extend this Forms functionality?
Like: Have in the Forms View admin Custom Raw Html fields. 1. as begin Form View 2. for each field begin and end raw html 3. a form view end raw html.
In addition do you plan to implement a delete, update function for DB rows?