You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Как можно вручную задать атрибут name в html колонки?
Я хочу получить EmployeeWork[33][employeesParams][0][employee_id] вместо EmployeeWork[employeesParams][0][employee_id]
nameSuffix не решает мою проблему.
The text was updated successfully, but these errors were encountered:
не завязываться на сам виджет и разрулить все на стороне контроллера.
можно использовать опцию columnClass через которую можно указать свой класс, унаследованный от базового. В своем классе надо переопределить метод getElementName
use unclead\multipleinput\MultipleInputColumn;
class MyMultipleInputColumn extends MultipleInputColumn
{
public $namePrefix;
protected function getInputNamePrefix()
{
if (isset($this->namePrefix)) {
return $this->namePrefix;
}
return parent::getInputNamePrefix();
}
}
Как можно вручную задать атрибут name в html колонки?
Я хочу получить EmployeeWork[33][employeesParams][0][employee_id] вместо EmployeeWork[employeesParams][0][employee_id]
nameSuffix не решает мою проблему.
The text was updated successfully, but these errors were encountered: