La pregunta que tengo es: Como puedo agrega una variable DATA de HTML 5 en un data grid; mi codigo es este:
Código HTML:
quiero agregarle la variable al Ver original
<table id="dgCalificaciones" class="easyui-datagrid" title="Segumiento de calificaciones" style="width:700px;height:250px" data-options=" rownumbers:false, singleSelect:true, url:'<?php echo $this->url(array('controller'=>'Lista','action'=>'gridpromedio'))?>', method:'get', rowStyler: rowStyler, onClickRow: onClickRow "> <thead data-options="frozen:true"> </thead> <thead> <tr> <th data-options="field:'id_mes',width:150,align:'center', formatter:formatter, editor:{ type:'combobox', options:{ valueField:'id_mes', textField:'mes_nota', url:'<?php echo $this->url(array('controller'=>'Lista','action'=>'combomes'))?>', required:true } }">Mes</th> <?php $contador = 1; foreach($this->titulos as $concepto){?> <th data-options="field:'nota<?php echo $contador; ?>-<?php echo $concepto['porcentaje']; ?>', align:'center', width:150" editor="{type:'numberbox',options:{precision:1}}"><?php echo ucfirst($concepto['concepto']).'-'.$concepto['porcentaje']; ?></th> <?php $contador++; } ?> </tr> </thead> </table>
Código HTML:
Ver original
Espero y alguien me pueda ayudar.
Saludos