作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在创建一个 Excel 模板,其中应包含一个下拉列表。我认为使用 phpexcel 库( PHPExcel Multiple Dropdown list that dependent )是可能的。我想知道是否可以使用 maatwebsite 提供的 laravel-excel 库来完成。我需要 dropdown、NamedRange、datavalidation、setFormula 等函数的语法。
最佳答案
对于 maatwebite 版本 V.3.1 使用以下代码
<?php
namespace App\Exports;
use App\Models\Category;
use Illuminate\Contracts\View\View;
use Maatwebsite\Excel\Concerns\FromView;
use Maatwebsite\Excel\Concerns\WithEvents;
use Maatwebsite\Excel\Concerns\WithTitle;
use Maatwebsite\Excel\Events\AfterSheet;
use PhpOffice\PhpSpreadsheet\Cell\DataValidation;
class BulkUploadProductExport implements FromView, WithEvents , WithTitle
{
public function view(): View
{
return view('exports', [
'categories' => Category::all()
]);
}
public function title(): string
{
return 'bulkupload';
}
public function registerEvents(): array
{
//$event = $this->getEvent();
return [
AfterSheet::class => function (AfterSheet $event) {
/** @var Sheet $sheet */
$sheet = $event->sheet;
/**
* validation for bulkuploadsheet
*/
$sheet->setCellValue('B5', "SELECT ITEM");
$configs = "DUS800, DUG900+3xRRUS, DUW2100, 2xMU, SIU, DUS800+3xRRUS, DUG900+3xRRUS, DUW2100";
$objValidation = $sheet->getCell('B5')->getDataValidation();
$objValidation->setType(DataValidation::TYPE_LIST);
$objValidation->setErrorStyle(DataValidation::STYLE_INFORMATION);
$objValidation->setAllowBlank(false);
$objValidation->setShowInputMessage(true);
$objValidation->setShowErrorMessage(true);
$objValidation->setShowDropDown(true);
$objValidation->setErrorTitle('Input error');
$objValidation->setError('Value is not in list.');
$objValidation->setPromptTitle('Pick from list');
$objValidation->setPrompt('Please pick a value from the drop-down list.');
$objValidation->setFormula1('"' . $configs . '"');
}
];
}
}
关于php - Laravel excel 库(Maat 网站): How to create a drop down list in exports,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29815227/
我从这里获取教程:https://laravel-excel.maatwebsite.nl/3.0/exports/extending.html 所以我使用版本3 我的Excel是这样的: 我想把它改
我知道这看起来不太可能,但我不知道为什么我的导入程序会丢失一些列并接收其他列。 我需要最新的 Maat 版本,甚至使用他们的示例对我的表格进行了测试,它非常适合我现在使用的表格。 但是,在创建时我需要
我正在创建一个 Excel 模板,其中应包含一个下拉列表。我认为使用 phpexcel 库( PHPExcel Multiple Dropdown list that dependent )是可能的。
我是一名优秀的程序员,十分优秀!