我有这样的dropdown
清单
<?php echo $form->dropdownList($customers,'customer_name', CHtml::listData(Customers::model()->findAll(), 'id', 'customer_name'),
array(
'ajax'=> array(
'type'=>'GET',
'url'=>
'data'=>
),
'empty'=>--Select One---')); ?>
创建一个的另一个链接new customer
是这样的
<?php echo CHtml::link('Create Customers', "",array(
'style'=>'cursor: pointer; text-decoration: underline;',
'onclick'=>"{addCustomers(); $('#dialogCustomers').dialog('open');}"));?>
我想要create customer link
应该进来dropdown list
。那么如何放置create customer link inside the dropdown list
,如何合并两个链接并将它们创建为一个链接?任何帮助和建议都将非常受欢迎。