如何制作子表单取决于从下拉列表中选择的值
labelEx($model,’categoryid’); ?> dropDownList($model,’categoryid’,CHtml::listData($dataReader, ‘categoryid’, ‘categorydescription’),array(‘prompt’=>’SELECT’));?> error($model,’categoryid’); ?>
我想创建一个取决于categoryid 值的子表单。
我有itemcatproperty表,它包含categoryid,label,controltype。如果控件值为 0 表示它是文本框,1 表示下拉列表,2 表示复选框。如果我从下拉列表中选择一个类别ID,我想将这些控件和标签名称包含到表单中。
labelEx($model,’categoryid’); ?> dropDownList($model,’categoryid’,CHtml::listData($dataReader, ‘categoryid’, ‘categorydescription’),array(‘prompt’=>’SELECT’));?> error($model,’categoryid’); ?>
I want to create a sub form depends on the categoryid value.
I have itemcatproperty table, it contain categoryid, label, controltype. If the control value is 0 means its a text box and 1 for dropdown list,2 for checkbox. If I select one categoryid from the dropdown list I want to include these controls and label names into the form.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有两种方法:
也许让您的问题更具体一些,以便我们可以建议最合适的解决方案?
There are two approaches:
Maybe make your problem a bit more concrete so we can suggest the most appropiate solution?