示例#1
0
文件: _form.php 项目: hipogea/zega
		<?php 
echo $form->textField($model, 'solicitante', array('size' => 30, 'maxlength' => 30));
?>
		<?php 
echo $form->error($model, 'solicitante');
?>
	</div>

	<div class="row">
		<?php 
//echo $form->labelEx($model,'solicitante');
?>
		<?php 
//echo $form->textField($model,'solicitante',array('size'=>30,'maxlength'=>30));
if (!$model->isNewRecord) {
    $modi = new Maestrosolicitudes();
    $proveedor = $modi->search_($model->id);
    $this->renderPartial('vw_detalle', array('model' => $model, 'proveedor' => $proveedor));
}
?>
		<?php 
//echo $form->error($model,'solicitante');
?>
	</div>
	

	<div class="row buttons">
		<?php 
echo CHtml::submitButton($model->isNewRecord ? 'Crear' : 'Editar');
?>
	</div>
 /**
  * Returns the data model based on the primary key given in the GET variable.
  * If the data model is not found, an HTTP exception will be raised.
  * @param integer the ID of the model to be loaded
  */
 public function loadModel($id)
 {
     $model = Maestrosolicitudes::model()->findByPk($id);
     if ($model === null) {
         throw new CHttpException(404, 'El enlace o direccion solicitado no existe');
     }
     return $model;
 }