TextBox
Minimum setting #
<?php
\koolreport\inputs\TextBox::create([
"name"=>"customer",
]);
?>
Other properties #
Name | type | default | description |
---|---|---|---|
name | string | *Required Name of the controls | |
value | string | Value of the textbox, this value will be override by the binded params | |
attributes | array | null | An associate array contains settings for inputs, see example below |
Client events #
TextBox supports all client events such as focus
, blur
, keypress
, keyup
, keydown
, mouseover
, mouseout
.
Full example #
<?php
\koolreport\inputs\TextBox::create([
"name"=>"customer",
"value"=>"John Lennon",
"attributes"=>array(
"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.