Skip to content

Commit

Permalink
📝 BASE #216 melhorando documentação
Browse files Browse the repository at this point in the history
  • Loading branch information
bjverde committed Mar 1, 2020
1 parent 10d0d60 commit bdb1c47
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions base/classes/webform/TForm.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -7324,8 +7324,8 @@ public function addColorPickerField( $strName, $strLabel=null, $boolRequired=nul
* @param mixed $boolEnableTreeLines -16:
* @param mixed $strLabel -17:
* @param mixed $boolLabelAbove -18:
* @param mixed $boolNewLine -19:
* @param mixed $boolNoWrapLabel -20:
* @param mixed $boolNewLine -19: boolNewLine
* @param mixed $boolNoWrapLabel -20: boolNoWrapLabel
* @param mixed $mixFormSearchFields -21:
* @param mixed $boolShowToolBar -22:
* @param mixed $startExpanded -23: Se o TreeView deve iniciar expandido ou não
Expand Down Expand Up @@ -7361,13 +7361,20 @@ public function addTreeField( $strName
$this->addJsFile( 'dhtmlx/treeview/dhtmlxtree.js' );
$this->addCssFile( 'dhtmlx/treeview/dhtmlxtree.css' );

$tree = new TTreeView( $strName, $strRootLabel, $arrData, $strParentFieldName, $strChildFieldName
$tree = new TTreeView( $strName
, $strRootLabel
, $arrData
, $strParentFieldName
, $strChildFieldName
, $strDescFieldName
, $strInitialParentKey
, $mixUserDataFields
, $strHeight
, $strWidth
, $jsOnClick, $jsOnDblClick, $jsOnCheck, $jsOnDrag
, $jsOnClick
, $jsOnDblClick
, $jsOnCheck
, $jsOnDrag
, $boolEnableCheckBoxes
, $boolEnableRadioButtons
, $boolEnableTreeLines
Expand Down

0 comments on commit bdb1c47

Please sign in to comment.