本文整理汇总了PHP中Tax::searchwstatus方法的典型用法代码示例。如果您正苦于以下问题:PHP Tax::searchwstatus方法的具体用法?PHP Tax::searchwstatus怎么用?PHP Tax::searchwstatus使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Tax
的用法示例。
在下文中一共展示了Tax::searchwstatus方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: array
<?php
echo $form->labelEx($model, 'taxid');
?>
<?php
echo $form->hiddenField($model, 'taxid');
?>
<input type="text" name="taxcode" id="taxcode" readonly>
<?php
$this->beginWidget('zii.widgets.jui.CJuiDialog', array('id' => 'tax_dialog', 'options' => array('title' => Yii::t('app', 'Tax'), 'width' => 'auto', 'autoOpen' => false, 'modal' => true)));
$tax = new Tax('searchwfstatus');
$tax->unsetAttributes();
// clear any default values
if (isset($_GET['Tax'])) {
$tax->attributes = $_GET['Tax'];
}
$this->widget('zii.widgets.grid.CGridView', array('id' => 'tax-grid', 'dataProvider' => $tax->searchwstatus(), 'filter' => $tax, 'template' => '{summary}{pager}<br>{items}{pager}{summary}', 'columns' => array(array('header' => '', 'type' => 'raw', 'value' => 'CHtml::Button("V",
array("name" => "send_absstatus",
"id" => "send_absstatus",
"onClick" => "$(\\"#tax_dialog\\").dialog(\\"close\\"); $(\\"#taxcode\\").val(\\"$data->taxcode\\");
$(\\"#Invoice_taxid\\").val(\\"$data->taxid\\");"))'), array('name' => 'taxid', 'visible' => false, 'value' => '$data->taxid', 'htmlOptions' => array('width' => '1%')), 'taxcode', 'taxvalue')));
$this->endWidget('zii.widgets.jui.CJuiDialog');
echo CHtml::Button('...', array('onclick' => '$("#tax_dialog").dialog("open"); return false;'));
?>
<?php
echo $form->error($model, 'taxid');
?>
</td>
<tr>
<td>
<?php
echo $form->labelEx($model, 'paymentmethodid');