Skip to content

Commit eb448ac

Browse files
authored
Update Column.php
Add new custom attribute.
1 parent a66ed58 commit eb448ac

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

src/Html/Column.php

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -504,6 +504,19 @@ public function footer($value)
504504
return $this;
505505
}
506506

507+
/**
508+
* Set custom html title instead defult label.
509+
*
510+
* @param mixed $value
511+
* @return $this
512+
*/
513+
public function htmlTitle($value)
514+
{
515+
$this->attributes['html-title'] = $value;
516+
517+
return $this;
518+
}
519+
507520
/**
508521
* @return array
509522
*/

0 commit comments

Comments
 (0)