Lurtz963
Lurtz963
for anyone having this issue the solution by @tikumo works > public function write() { if (!$this->element instanceof \PhpOffice\PhpWord\Element\ListItemRun) { return ''; } $content = ''; $content .= ''; $content...
> What I ended up doing is: I modified phpoffice/phpword/vendor/phpoffice/phpword/src/PhpWord/Writer/HTML/Element/ListItemRun.php > > ``` > protected function writeOpening() > { > $content = sprintf('', $this->element->getDepth(), > $this->element->getListFormat($this->element->getDepth()), > $this->element->getListId()); > >...
After a bit of struggle I was able to implement a similar solution @bozzit , for some reason I couldn't use a custom writer (It throws the error that is...
Recently I came across this same problem of searching a ordering by virtual fields in DataTables. I'll let a code example for anyone having problems with this. Basically you pass...