TextArea
Minimum setting #
<?php
TextArea::create({
"name"=>"desciption",
});
?>
Other properties #
Name | type | default | description |
---|---|---|---|
name | string | *Required Name of the controls | |
value | string | Value of the textarea, this value will be override by the binded params | |
attributes | array | null | An associate array contains settings for inputs, see example below |
Client events #
TextArea supports all client events such as focus
, blur
, keypress
, keyup
, keydown
, mouseover
, mouseout
.
Example #
<?php
TextArea::create({
"name"=>"customer",
"value"=>"John Lennon",
"attributes"=>array(
"rows"=>5,
"class"=>"form-control"
),
"clientEvents"=>array(
"focus"=>"function(){
console.log('focus');
}",
)
});
?>
Get started with KoolReport
KoolReport will help you to construct good php data report by gathering your data from multiple sources, transforming them into valuable insights, and finally visualizing them in stunning charts and graphs.