I have some javascript that is basically performing a sql query by creating a dynamic model. When I’m done with the data, I’d like to remove the model from the page. Is there some way to delete or remove a model?
skuid.$M('MyModel').delete();
? or
delete skuid.model.map().MyModel;