Diferencia entre revisiones de «Listas Enlazadas»
De KumbiaPHP Framework Wiki
(→Vista) |
|||
Línea 42: | Línea 42: | ||
</source> | </source> | ||
− | == | + | == Vistas == |
+ | '''index.phtml''' | ||
<source lang=xml> | <source lang=xml> | ||
<label for="datos_estados_id">Estado: </label> | <label for="datos_estados_id">Estado: </label> | ||
Línea 53: | Línea 54: | ||
<?php echo Tag::js('jquery/jquery.min'); ?> | <?php echo Tag::js('jquery/jquery.min'); ?> | ||
<?php echo Tag::js('jquery/kumbia.jquery.min'); ?> | <?php echo Tag::js('jquery/kumbia.jquery.min'); ?> | ||
+ | </source> | ||
+ | |||
+ | '''ciudades.phtml''' | ||
+ | <source lang=xml> | ||
+ | <?php echo json_encode($data);s?> | ||
</source> | </source> | ||
By: '''ashrey''' | By: '''ashrey''' |
Revisión del 01:18 7 mar 2013
Controlador
<?php
class DatosController extends AdminController {
protected function after_filter() {
if (Input::isAjax()) {
View::select('ajax', null);
}
}
function index() {
}
function ciudades($id) {
header('Content-type:text/json');
$salida = array();
$ciudades = Load::model('ciudades')->mostrar($id);
foreach ($ciudades as $c) {
$salida[$c->id] = $c->ciudad;
}
die(json_encode($salida));
}
}
Modelos
ciudades.php
class Ciudades extends ActiveRecord {
function mostrar($id){
return $this->find("conditions: estados_id = '$id'", 'columns: id, ciudad');
}
}
estados.php
<?php
class Estados extends ActiveRecord {
}?>
Vistas
index.phtml
<label for="datos_estados_id">Estado: </label>
<?php echo Form::dbSelect('datos.estados_id', NULL, NULL, 'Elija', 'data-kumbia="remote" data-url="datos/ciudades" data-update="datos_ciudades_id"');?>
<label class="control-label" for="datos_ciudades_id">Ciudad: </label>
<?php echo Form::dbSelect('datos.ciudades_id'); ?>
<?php echo Tag::js('jquery/jquery.min'); ?>
<?php echo Tag::js('jquery/kumbia.jquery.min'); ?>
ciudades.phtml
<?php echo json_encode($data);s?>
By: ashrey