Commit 3e32d562 authored by Jefferson Vinueza's avatar Jefferson Vinueza

Grilla Libros

parent 67caff22
This diff is collapsed.
...@@ -65,16 +65,6 @@ ...@@ -65,16 +65,6 @@
<?php echo $form->textField($model, 'MZGTLIBROS_EDITOR', array('maxlength' => 150, 'size'=>75)); ?> <?php echo $form->textField($model, 'MZGTLIBROS_EDITOR', array('maxlength' => 150, 'size'=>75)); ?>
<?php echo $form->error($model,'MZGTLIBROS_EDITOR'); ?> <?php echo $form->error($model,'MZGTLIBROS_EDITOR'); ?>
</div><!-- row --> </div><!-- row -->
<!--ENLACE --->
<div class="row" id="div_enlace">
<?php //echo $form->labelEx($model,'MZGTLIBROS_ENLACE'); ?>
<?php echo '<label for="Mzgtlibros_MZGTLIBROS_ENLACE">Enlace <span id="req_enlace" class="required">*</span></label>'; ?>
<?php echo $form->textField($model, 'MZGTLIBROS_ENLACE', array('maxlength' => 500, 'size'=>100)); ?>
<?php echo $form->error($model,'MZGTLIBROS_ENLACE'); ?>
</div><!-- row -->
<!--ENLACE-------->
<div class="row" id="div_ciudad_libro"> <div class="row" id="div_ciudad_libro">
<?php echo $form->labelEx($model,'MZGTLIBROS_CIUDAD'); ?> <?php echo $form->labelEx($model,'MZGTLIBROS_CIUDAD'); ?>
<?php //echo '<label for="Mzgtlibros_MZGTLIBROS_CIUDAD">Ciudad <span id="req_ciudad_libro" class="required">*</span></label>'; ?> <?php //echo '<label for="Mzgtlibros_MZGTLIBROS_CIUDAD">Ciudad <span id="req_ciudad_libro" class="required">*</span></label>'; ?>
...@@ -179,28 +169,24 @@ ...@@ -179,28 +169,24 @@
</div><!-- row --> </div><!-- row -->
</fieldset> </fieldset>
<details open="open"> <details>
<summary style="background-color: #880000; color: white;"><b>Banco de Autores (clic para agregar autores)</b></summary> <summary style="background-color: #880000; color: white;"><b>Banco de Autores (clic para agregar autores)</b></summary>
<h4 style="color: #C00; font-weight: bold; ">Seleccione en orden de autoría</h4> <?php if (isset($model->PK_MZGTPUBLICACIONES))
<!-- Aquí va el grid de autores -->
<?php if (isset($model->PK_MZGTPUBLICACIONES))
$publicacion = $model->PK_MZGTPUBLICACIONES; $publicacion = $model->PK_MZGTPUBLICACIONES;
else else
$publicacion = 0; $publicacion = 0;
$this->widget('ext.widgets.multiselects.XMultiSelects',array( $this->widget('ext.widgets.multiselects.XMultiSelects',array(
'leftTitle'=>'Actualmente en la publicación', 'leftTitle'=>'Actualmente en la publicación',
'leftName'=>'Mzgtpublicaciones[mzgtbancoautores][]', 'leftName'=>'Mzgtlibros[mzgtbancoautores][]',
'leftList'=> Mzgtbancoautores::model()->findBancoAutoresPorPublicacion($publicacion), 'leftList'=> Mzgtbancoautores::model()->findBancoAutoresPorPublicacion($publicacion),
'rightTitle'=>'Banco de autores', 'rightTitle'=>'Banco de autores',
'rightName'=>'Mzgtbancoautores[mzgtpublicaciones][]', 'rightName'=>'Mzgtbancoautores[mzgtlibros][]',
'rightList'=>Mzgtbancoautores::model()->findBancoAutoresPorNoPublicacion($publicacion), 'rightList'=>Mzgtbancoautores::model()->findBancoAutoresPorNoPublicacion($publicacion),
'size'=>20, 'size'=>20,
'width'=>'300px', 'width'=>'300px',
)); ));
?> ?>
</details> </details>
<?php <?php
......
...@@ -248,22 +248,22 @@ ...@@ -248,22 +248,22 @@
<h4 style="color: #C00; font-weight: bold; ">Seleccione en orden de autoría</h4> <h4 style="color: #C00; font-weight: bold; ">Seleccione en orden de autoría</h4>
<!-- Aquí va el grid de autores --> <!-- Aquí va el grid de autores -->
<?php if (isset($model->PK_MZGTPUBLICACIONES)) <?php if (isset($model->PK_MZGTPUBLICACIONES))
$publicacion = $model->PK_MZGTPUBLICACIONES; $publicacion = $model->PK_MZGTPUBLICACIONES;
else else
$publicacion = 0; $publicacion = 0;
$this->widget('ext.widgets.multiselects.XMultiSelects',array( $this->widget('ext.widgets.multiselects.XMultiSelects',array(
'leftTitle'=>'Actualmente en la publicación', 'leftTitle'=>'Actualmente en la publicación',
'leftName'=>'Mzgtpublicaciones[mzgtbancoautores][]', 'leftName'=>'Mzgtpublicaciones[mzgtbancoautores][]',
'leftList'=> Mzgtbancoautores::model()->findBancoAutoresPorPublicacion($publicacion), 'leftList'=> Mzgtbancoautores::model()->findBancoAutoresPorPublicacion($publicacion),
'rightTitle'=>'Banco de autores', 'rightTitle'=>'Banco de autores',
'rightName'=>'Mzgtbancoautores[mzgtpublicaciones][]', 'rightName'=>'Mzgtbancoautores[mzgtpublicaciones][]',
'rightList'=>Mzgtbancoautores::model()->findBancoAutoresPorNoPublicacion($publicacion), 'rightList'=>Mzgtbancoautores::model()->findBancoAutoresPorNoPublicacion($publicacion),
'size'=>20, 'size'=>20,
'width'=>'300px', 'width'=>'300px',
)); ));
?> ?>
</details> </details>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment