We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2d210ce + dea7bb2 commit b60d761Copy full SHA for b60d761
src/Html/Column.php
@@ -491,6 +491,20 @@ public function render(mixed $value): static
491
return $this;
492
}
493
494
+ /**
495
+ * Set Callback function to render column for Print + Export
496
+ *
497
+ * @param callable $callback
498
+ * @return $this
499
+
500
+ */
501
+ public function exportRender(callable $callback): static
502
+ {
503
+ $this->attributes['exportRender'] = $callback;
504
505
+ return $this;
506
+ }
507
508
/**
509
* Parse render attribute.
510
*
0 commit comments