We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I set unique field check for collection
Genres._ensureIndex({title: 1}, {unique: true});
and if I add document with same title to list I have an error in console
insert failed: MongoError: insertDocument :: caused by :: 11000 E11000 duplicate key error index: meteor.genres.$title_1 dup key: { : "New title" }
I want show alert message with error like a
webix.message("Document with same title is exist!");
but I don't know where paste this code.
Need add error callback to save section of meteor-data.js
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I set unique field check for collection
and if I add document with same title to list I have an error in console
I want show alert message with error like a
but I don't know where paste this code.
Need add error callback to save section of meteor-data.js
The text was updated successfully, but these errors were encountered: