Hi
I want to use the textbox and dropdown list physically on one of the cells of Grid using server side processing. I tried but the dropdown box and textboxes are in readonly mode.i mentioned the editable: true and columntype: textbox too but still it appears in readonly mode. Please help
here is my code that i am using
{“data”:[ <?php
foreach($result_pag_data as $products )
{
$counter++;
$index++; ?>
{“productnumber”:”<?php echo $index; ?>”,”name”:”<?php echo $products[‘name’]; ?>”,”price”:”<?php echo LANGUAGE_CURRENCY.”.$products[‘price’]; ?>”,”quantitiymin”:”<?php echo $products[‘qty_min’]; ?>”,”quantitymax”:”<?php echo $products[‘qty_max’]; ?>”,”inventory”:”<?php echo $products[‘inventory’]; ?>”,”order”:”<?php echo “<div align=’center’><input name=’new_qty[]’ id=’new_qty’ value='”.$products[‘qty_order’].”‘ type=’text’ size=’10’ style=’width:90px;’ /><input type=’hidden’ id=’product_id’ name=’product_id[]’ value='”.$products[‘id’].”‘/></div>”; ?>”}<?php if( $counter != $size ){ ?>, <?php } ?>
<?php
}
?>
]}