<script type='text/javascript'>
jQuery(function ($) {
$('#active_ingredients_grid').ejGrid({
dataSource: [],
columns : [
{ field: "id", visible: false, isPrimaryKey: true },
],
actionComplete : function complete(args){
if (args.requestType === 'save'){
}
if (args.requestType === 'add' || args.requestType === 'beginedit') {
$('#active_ingredients_gridactive_ingredient_id').ejDropDownList({ select: function(args){
$('#active_ingredients_grid').ejWaitingPopup('show');
. . .
$('#active_ingredients_gridsupplier_id').ejDropDownList('destroy');
$('#active_ingredients_gridsupplier_id').ejDropDownList({
dataSource : items,
width:'100%',
fields: { text: 'name', value: 'value' }
});
$('#active_ingredients_grid').ejWaitingPopup('hide');
}
});
}
}
});
});
</script> |