Field values set in snippet are not getting saved either by save method or by button action

Shalabh,

Would you share your snippet and the XML of your model.

One thing that may be affecting you is that the line to close the popup may be running before your save completes.  You can try wrapping your ‘close’ in a promise:

var model=skuid.model.map().NameOfModel;
$.when(model.save())<br>.done(function(){<br> console.log('Models Saved'); //close all popups skuid.$('.ui-dialog-content').dialog('close');

})

Thanks,

Bill