gpt4 book ai didi

php - zend 使用 Decoration 在文本框旁边移动服务器端验证消息

转载 作者:可可西里 更新时间:2023-10-31 23:48:55 24 4
gpt4 key购买 nike

在 zend 中,

使用装饰器如何将验证消息带到文本框旁边。 我现在的装修码

$elementDecoration = array(
'ViewHelper',
'Description',
'Errors',
array(array('data' => 'HtmlTag'), array('tag' => 'td','width'=>'75%', 'class' => 'txt-td-field')),
array('Label', array('tag' => 'td','width'=>'50%', 'class' => 'txt-td-label', 'placement' => 'prepend')),
array(array('row' => 'HtmlTag'), array('tag' => 'tr','valign'=>'top'),'width'=>'102%'),
);

enter image description here

最佳答案

$fname = $this->createElement('text', 'first_name');
$fname ->setRequired(true)
->setAttrib('class','my_class')
->addValidator('NotEmpty', true, array('Name is required'));
$fname->setDecorators(array('ViewHelper','Errors'));

这将完成工作。

关于php - zend 使用 Decoration 在文本框旁边移动服务器端验证消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15762564/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com