simpl-schema not working with autoform using meteor flow-db-admin











up vote
0
down vote

favorite












Currently using meteor flow-db-admin as admin template https://github.com/sachinbhutani/flow-db-admin



But the autoform doesn't seem to work with the simpl-schema as the labels don't show and the validation doesn't work



package.json



{
"name": "tours",
"private": true,
"scripts": {
"start": "meteor run",
"test": "meteor test --once --driver-package meteortesting:mocha",
"test-app": "TEST_WATCH=1 meteor test --full-app --driver-package meteortesting:mocha",
"visualize": "meteor --production --extra-packages bundle-visualizer"
},
"dependencies": {
"@babel/runtime": "^7.1.5",
"bcrypt": "^3.0.0",
"classnames": "^2.2.6",
"meteor-node-stubs": "^0.4.1",
"react": "^16.4.2",
"react-addons-pure-render-mixin": "^15.6.2",
"react-dom": "^16.4.2",
"react-mounter": "^1.2.0",
"simpl-schema": "^1.5.3"
},
"meteor": {
"mainModule": {
"client": "client/main.js",
"server": "server/main.js"
},
"testModule": "tests/main.js"
},
"devDependencies": {
"chai": "^4.1.2"
}
}


.meteor/packages



# Meteor packages used by this project, one per line.
# Check this file (and the other files in this directory) into your repository.
#
# 'meteor add' and 'meteor remove' will edit this file for you,
# but you can also edit it by hand.

meteor-base@1.4.0 # Packages every Meteor app needs to have
mobile-experience@1.0.5 # Packages for a great mobile UX
mongo@1.6.0 # The database Meteor supports right now
reactive-var@1.0.11 # Reactive variable for tracker
tracker@1.2.0 # Meteor's client-side reactive programming library

standard-minifier-css@1.5.0 # CSS minifier run for production mode
standard-minifier-js@2.4.0 # JS minifier run for production mode
es5-shim@4.8.0 # ECMAScript 5 compatibility for older browsers
ecmascript@0.12.0 # Enable ECMAScript2015+ syntax in app code
shell-server@0.4.0 # Server-side component of the `meteor shell` command

react-meteor-data
accounts-ui@1.3.1
accounts-password@1.5.1
meteortesting:mocha
twbs:bootstrap
static-html
jquery
kadira:flow-router
kadira:blaze-layout
dburles:collection-helpers
accounts-base@1.4.3
alanning:roles
fortawesome:fontawesome
meteortoys:allthings
check@1.3.1
aldeed:collection2-core
sach:flow-db-admin
aldeed:simple-schema


server/main.js



import { Meteor } from 'meteor/meteor';

// import '../imports/startup/accounts-config.js';
import '../imports/routes.js';
import '../imports/schemas.js';
// import '../imports/startup/admin-config.js';

Meteor.startup(() => {
/*
*/
AdminConfig = {
collections: {
Posts: {}
}
};

});


client/main.js



import React from 'react';
import { Meteor } from 'meteor/meteor';
import { render } from 'react-dom';

import '../imports/startup/accounts-config.js';
import '../imports/routes.js';
import '../imports/schemas.js';
// import '../imports/startup/admin-config.js';

Meteor.startup(() => {

/*
*/
AdminConfig = {
collections: {
Posts: {}
}
};
});


imports/schemas.js



import React from 'react';
// import { FlowRouter } from 'meteor/kadira:flow-router'
import { mount } from 'react-mounter';
import SimpleSchema from 'simpl-schema';
SimpleSchema.extendOptions(['autoform']);



Schemas = {};

Posts = new Meteor.Collection('posts');
Users = Meteor.users;

Schemas.Posts = new SimpleSchema({
title: {
label: 'Title',
type: String,
max: 60
},
content: {
label: 'Content',
type: String,
autoform: {
rows: 5
}
},
createdAt: {
type: Date,
label: 'Date',
autoValue: function () {
if (this.isInsert) {
return new Date();
}
}
},
owner: {
label: 'Author',
type: String,
regEx: SimpleSchema.RegEx.Id,
autoValue: function () {
if (this.isInsert) {
return Meteor.userId();
}
},
autoform: {
options: function () {
return _.map(Meteor.users.find().fetch(), function (user) {
return {
label: user.emails[0].address,
value: user._id
};
});
}
}
}
});

Posts.attachSchema(Schemas.Posts);


Then after launching, it shows the below; the validation doesn't work and the labels are not displayed also.



Please help



enter image description here










share|improve this question
























  • Please add your package.json and .meteor/packages lists in order to check if there is a compatibility issue.
    – Jankapunkt
    Nov 21 at 17:40










  • @Jankapunkt updated
    – Orion
    Nov 21 at 21:33










  • You should remove aldeed:simpl-schema from the meteor packages list because it is deprecated. The correct package is already installed in your npm depencies. By the way - are you using blaze and react together or why are there the kadira packages?
    – Jankapunkt
    Nov 21 at 21:38










  • There's no aldeed:simpl-schema there, you mean the aldeed:simple-schema?. No I'm not, would remove that
    – Orion
    Nov 21 at 21:52










  • Yes remove aldeed:simple-schema and remove everything that is blaze related if you only want to use react. Then please try again if the form is now rendering correctly.
    – Jankapunkt
    Nov 21 at 21:58















up vote
0
down vote

favorite












Currently using meteor flow-db-admin as admin template https://github.com/sachinbhutani/flow-db-admin



But the autoform doesn't seem to work with the simpl-schema as the labels don't show and the validation doesn't work



package.json



{
"name": "tours",
"private": true,
"scripts": {
"start": "meteor run",
"test": "meteor test --once --driver-package meteortesting:mocha",
"test-app": "TEST_WATCH=1 meteor test --full-app --driver-package meteortesting:mocha",
"visualize": "meteor --production --extra-packages bundle-visualizer"
},
"dependencies": {
"@babel/runtime": "^7.1.5",
"bcrypt": "^3.0.0",
"classnames": "^2.2.6",
"meteor-node-stubs": "^0.4.1",
"react": "^16.4.2",
"react-addons-pure-render-mixin": "^15.6.2",
"react-dom": "^16.4.2",
"react-mounter": "^1.2.0",
"simpl-schema": "^1.5.3"
},
"meteor": {
"mainModule": {
"client": "client/main.js",
"server": "server/main.js"
},
"testModule": "tests/main.js"
},
"devDependencies": {
"chai": "^4.1.2"
}
}


.meteor/packages



# Meteor packages used by this project, one per line.
# Check this file (and the other files in this directory) into your repository.
#
# 'meteor add' and 'meteor remove' will edit this file for you,
# but you can also edit it by hand.

meteor-base@1.4.0 # Packages every Meteor app needs to have
mobile-experience@1.0.5 # Packages for a great mobile UX
mongo@1.6.0 # The database Meteor supports right now
reactive-var@1.0.11 # Reactive variable for tracker
tracker@1.2.0 # Meteor's client-side reactive programming library

standard-minifier-css@1.5.0 # CSS minifier run for production mode
standard-minifier-js@2.4.0 # JS minifier run for production mode
es5-shim@4.8.0 # ECMAScript 5 compatibility for older browsers
ecmascript@0.12.0 # Enable ECMAScript2015+ syntax in app code
shell-server@0.4.0 # Server-side component of the `meteor shell` command

react-meteor-data
accounts-ui@1.3.1
accounts-password@1.5.1
meteortesting:mocha
twbs:bootstrap
static-html
jquery
kadira:flow-router
kadira:blaze-layout
dburles:collection-helpers
accounts-base@1.4.3
alanning:roles
fortawesome:fontawesome
meteortoys:allthings
check@1.3.1
aldeed:collection2-core
sach:flow-db-admin
aldeed:simple-schema


server/main.js



import { Meteor } from 'meteor/meteor';

// import '../imports/startup/accounts-config.js';
import '../imports/routes.js';
import '../imports/schemas.js';
// import '../imports/startup/admin-config.js';

Meteor.startup(() => {
/*
*/
AdminConfig = {
collections: {
Posts: {}
}
};

});


client/main.js



import React from 'react';
import { Meteor } from 'meteor/meteor';
import { render } from 'react-dom';

import '../imports/startup/accounts-config.js';
import '../imports/routes.js';
import '../imports/schemas.js';
// import '../imports/startup/admin-config.js';

Meteor.startup(() => {

/*
*/
AdminConfig = {
collections: {
Posts: {}
}
};
});


imports/schemas.js



import React from 'react';
// import { FlowRouter } from 'meteor/kadira:flow-router'
import { mount } from 'react-mounter';
import SimpleSchema from 'simpl-schema';
SimpleSchema.extendOptions(['autoform']);



Schemas = {};

Posts = new Meteor.Collection('posts');
Users = Meteor.users;

Schemas.Posts = new SimpleSchema({
title: {
label: 'Title',
type: String,
max: 60
},
content: {
label: 'Content',
type: String,
autoform: {
rows: 5
}
},
createdAt: {
type: Date,
label: 'Date',
autoValue: function () {
if (this.isInsert) {
return new Date();
}
}
},
owner: {
label: 'Author',
type: String,
regEx: SimpleSchema.RegEx.Id,
autoValue: function () {
if (this.isInsert) {
return Meteor.userId();
}
},
autoform: {
options: function () {
return _.map(Meteor.users.find().fetch(), function (user) {
return {
label: user.emails[0].address,
value: user._id
};
});
}
}
}
});

Posts.attachSchema(Schemas.Posts);


Then after launching, it shows the below; the validation doesn't work and the labels are not displayed also.



Please help



enter image description here










share|improve this question
























  • Please add your package.json and .meteor/packages lists in order to check if there is a compatibility issue.
    – Jankapunkt
    Nov 21 at 17:40










  • @Jankapunkt updated
    – Orion
    Nov 21 at 21:33










  • You should remove aldeed:simpl-schema from the meteor packages list because it is deprecated. The correct package is already installed in your npm depencies. By the way - are you using blaze and react together or why are there the kadira packages?
    – Jankapunkt
    Nov 21 at 21:38










  • There's no aldeed:simpl-schema there, you mean the aldeed:simple-schema?. No I'm not, would remove that
    – Orion
    Nov 21 at 21:52










  • Yes remove aldeed:simple-schema and remove everything that is blaze related if you only want to use react. Then please try again if the form is now rendering correctly.
    – Jankapunkt
    Nov 21 at 21:58













up vote
0
down vote

favorite









up vote
0
down vote

favorite











Currently using meteor flow-db-admin as admin template https://github.com/sachinbhutani/flow-db-admin



But the autoform doesn't seem to work with the simpl-schema as the labels don't show and the validation doesn't work



package.json



{
"name": "tours",
"private": true,
"scripts": {
"start": "meteor run",
"test": "meteor test --once --driver-package meteortesting:mocha",
"test-app": "TEST_WATCH=1 meteor test --full-app --driver-package meteortesting:mocha",
"visualize": "meteor --production --extra-packages bundle-visualizer"
},
"dependencies": {
"@babel/runtime": "^7.1.5",
"bcrypt": "^3.0.0",
"classnames": "^2.2.6",
"meteor-node-stubs": "^0.4.1",
"react": "^16.4.2",
"react-addons-pure-render-mixin": "^15.6.2",
"react-dom": "^16.4.2",
"react-mounter": "^1.2.0",
"simpl-schema": "^1.5.3"
},
"meteor": {
"mainModule": {
"client": "client/main.js",
"server": "server/main.js"
},
"testModule": "tests/main.js"
},
"devDependencies": {
"chai": "^4.1.2"
}
}


.meteor/packages



# Meteor packages used by this project, one per line.
# Check this file (and the other files in this directory) into your repository.
#
# 'meteor add' and 'meteor remove' will edit this file for you,
# but you can also edit it by hand.

meteor-base@1.4.0 # Packages every Meteor app needs to have
mobile-experience@1.0.5 # Packages for a great mobile UX
mongo@1.6.0 # The database Meteor supports right now
reactive-var@1.0.11 # Reactive variable for tracker
tracker@1.2.0 # Meteor's client-side reactive programming library

standard-minifier-css@1.5.0 # CSS minifier run for production mode
standard-minifier-js@2.4.0 # JS minifier run for production mode
es5-shim@4.8.0 # ECMAScript 5 compatibility for older browsers
ecmascript@0.12.0 # Enable ECMAScript2015+ syntax in app code
shell-server@0.4.0 # Server-side component of the `meteor shell` command

react-meteor-data
accounts-ui@1.3.1
accounts-password@1.5.1
meteortesting:mocha
twbs:bootstrap
static-html
jquery
kadira:flow-router
kadira:blaze-layout
dburles:collection-helpers
accounts-base@1.4.3
alanning:roles
fortawesome:fontawesome
meteortoys:allthings
check@1.3.1
aldeed:collection2-core
sach:flow-db-admin
aldeed:simple-schema


server/main.js



import { Meteor } from 'meteor/meteor';

// import '../imports/startup/accounts-config.js';
import '../imports/routes.js';
import '../imports/schemas.js';
// import '../imports/startup/admin-config.js';

Meteor.startup(() => {
/*
*/
AdminConfig = {
collections: {
Posts: {}
}
};

});


client/main.js



import React from 'react';
import { Meteor } from 'meteor/meteor';
import { render } from 'react-dom';

import '../imports/startup/accounts-config.js';
import '../imports/routes.js';
import '../imports/schemas.js';
// import '../imports/startup/admin-config.js';

Meteor.startup(() => {

/*
*/
AdminConfig = {
collections: {
Posts: {}
}
};
});


imports/schemas.js



import React from 'react';
// import { FlowRouter } from 'meteor/kadira:flow-router'
import { mount } from 'react-mounter';
import SimpleSchema from 'simpl-schema';
SimpleSchema.extendOptions(['autoform']);



Schemas = {};

Posts = new Meteor.Collection('posts');
Users = Meteor.users;

Schemas.Posts = new SimpleSchema({
title: {
label: 'Title',
type: String,
max: 60
},
content: {
label: 'Content',
type: String,
autoform: {
rows: 5
}
},
createdAt: {
type: Date,
label: 'Date',
autoValue: function () {
if (this.isInsert) {
return new Date();
}
}
},
owner: {
label: 'Author',
type: String,
regEx: SimpleSchema.RegEx.Id,
autoValue: function () {
if (this.isInsert) {
return Meteor.userId();
}
},
autoform: {
options: function () {
return _.map(Meteor.users.find().fetch(), function (user) {
return {
label: user.emails[0].address,
value: user._id
};
});
}
}
}
});

Posts.attachSchema(Schemas.Posts);


Then after launching, it shows the below; the validation doesn't work and the labels are not displayed also.



Please help



enter image description here










share|improve this question















Currently using meteor flow-db-admin as admin template https://github.com/sachinbhutani/flow-db-admin



But the autoform doesn't seem to work with the simpl-schema as the labels don't show and the validation doesn't work



package.json



{
"name": "tours",
"private": true,
"scripts": {
"start": "meteor run",
"test": "meteor test --once --driver-package meteortesting:mocha",
"test-app": "TEST_WATCH=1 meteor test --full-app --driver-package meteortesting:mocha",
"visualize": "meteor --production --extra-packages bundle-visualizer"
},
"dependencies": {
"@babel/runtime": "^7.1.5",
"bcrypt": "^3.0.0",
"classnames": "^2.2.6",
"meteor-node-stubs": "^0.4.1",
"react": "^16.4.2",
"react-addons-pure-render-mixin": "^15.6.2",
"react-dom": "^16.4.2",
"react-mounter": "^1.2.0",
"simpl-schema": "^1.5.3"
},
"meteor": {
"mainModule": {
"client": "client/main.js",
"server": "server/main.js"
},
"testModule": "tests/main.js"
},
"devDependencies": {
"chai": "^4.1.2"
}
}


.meteor/packages



# Meteor packages used by this project, one per line.
# Check this file (and the other files in this directory) into your repository.
#
# 'meteor add' and 'meteor remove' will edit this file for you,
# but you can also edit it by hand.

meteor-base@1.4.0 # Packages every Meteor app needs to have
mobile-experience@1.0.5 # Packages for a great mobile UX
mongo@1.6.0 # The database Meteor supports right now
reactive-var@1.0.11 # Reactive variable for tracker
tracker@1.2.0 # Meteor's client-side reactive programming library

standard-minifier-css@1.5.0 # CSS minifier run for production mode
standard-minifier-js@2.4.0 # JS minifier run for production mode
es5-shim@4.8.0 # ECMAScript 5 compatibility for older browsers
ecmascript@0.12.0 # Enable ECMAScript2015+ syntax in app code
shell-server@0.4.0 # Server-side component of the `meteor shell` command

react-meteor-data
accounts-ui@1.3.1
accounts-password@1.5.1
meteortesting:mocha
twbs:bootstrap
static-html
jquery
kadira:flow-router
kadira:blaze-layout
dburles:collection-helpers
accounts-base@1.4.3
alanning:roles
fortawesome:fontawesome
meteortoys:allthings
check@1.3.1
aldeed:collection2-core
sach:flow-db-admin
aldeed:simple-schema


server/main.js



import { Meteor } from 'meteor/meteor';

// import '../imports/startup/accounts-config.js';
import '../imports/routes.js';
import '../imports/schemas.js';
// import '../imports/startup/admin-config.js';

Meteor.startup(() => {
/*
*/
AdminConfig = {
collections: {
Posts: {}
}
};

});


client/main.js



import React from 'react';
import { Meteor } from 'meteor/meteor';
import { render } from 'react-dom';

import '../imports/startup/accounts-config.js';
import '../imports/routes.js';
import '../imports/schemas.js';
// import '../imports/startup/admin-config.js';

Meteor.startup(() => {

/*
*/
AdminConfig = {
collections: {
Posts: {}
}
};
});


imports/schemas.js



import React from 'react';
// import { FlowRouter } from 'meteor/kadira:flow-router'
import { mount } from 'react-mounter';
import SimpleSchema from 'simpl-schema';
SimpleSchema.extendOptions(['autoform']);



Schemas = {};

Posts = new Meteor.Collection('posts');
Users = Meteor.users;

Schemas.Posts = new SimpleSchema({
title: {
label: 'Title',
type: String,
max: 60
},
content: {
label: 'Content',
type: String,
autoform: {
rows: 5
}
},
createdAt: {
type: Date,
label: 'Date',
autoValue: function () {
if (this.isInsert) {
return new Date();
}
}
},
owner: {
label: 'Author',
type: String,
regEx: SimpleSchema.RegEx.Id,
autoValue: function () {
if (this.isInsert) {
return Meteor.userId();
}
},
autoform: {
options: function () {
return _.map(Meteor.users.find().fetch(), function (user) {
return {
label: user.emails[0].address,
value: user._id
};
});
}
}
}
});

Posts.attachSchema(Schemas.Posts);


Then after launching, it shows the below; the validation doesn't work and the labels are not displayed also.



Please help



enter image description here







meteor meteor-autoform simple-schema simpl-schema






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 21 at 21:33

























asked Nov 21 at 17:05









Orion

859




859












  • Please add your package.json and .meteor/packages lists in order to check if there is a compatibility issue.
    – Jankapunkt
    Nov 21 at 17:40










  • @Jankapunkt updated
    – Orion
    Nov 21 at 21:33










  • You should remove aldeed:simpl-schema from the meteor packages list because it is deprecated. The correct package is already installed in your npm depencies. By the way - are you using blaze and react together or why are there the kadira packages?
    – Jankapunkt
    Nov 21 at 21:38










  • There's no aldeed:simpl-schema there, you mean the aldeed:simple-schema?. No I'm not, would remove that
    – Orion
    Nov 21 at 21:52










  • Yes remove aldeed:simple-schema and remove everything that is blaze related if you only want to use react. Then please try again if the form is now rendering correctly.
    – Jankapunkt
    Nov 21 at 21:58


















  • Please add your package.json and .meteor/packages lists in order to check if there is a compatibility issue.
    – Jankapunkt
    Nov 21 at 17:40










  • @Jankapunkt updated
    – Orion
    Nov 21 at 21:33










  • You should remove aldeed:simpl-schema from the meteor packages list because it is deprecated. The correct package is already installed in your npm depencies. By the way - are you using blaze and react together or why are there the kadira packages?
    – Jankapunkt
    Nov 21 at 21:38










  • There's no aldeed:simpl-schema there, you mean the aldeed:simple-schema?. No I'm not, would remove that
    – Orion
    Nov 21 at 21:52










  • Yes remove aldeed:simple-schema and remove everything that is blaze related if you only want to use react. Then please try again if the form is now rendering correctly.
    – Jankapunkt
    Nov 21 at 21:58
















Please add your package.json and .meteor/packages lists in order to check if there is a compatibility issue.
– Jankapunkt
Nov 21 at 17:40




Please add your package.json and .meteor/packages lists in order to check if there is a compatibility issue.
– Jankapunkt
Nov 21 at 17:40












@Jankapunkt updated
– Orion
Nov 21 at 21:33




@Jankapunkt updated
– Orion
Nov 21 at 21:33












You should remove aldeed:simpl-schema from the meteor packages list because it is deprecated. The correct package is already installed in your npm depencies. By the way - are you using blaze and react together or why are there the kadira packages?
– Jankapunkt
Nov 21 at 21:38




You should remove aldeed:simpl-schema from the meteor packages list because it is deprecated. The correct package is already installed in your npm depencies. By the way - are you using blaze and react together or why are there the kadira packages?
– Jankapunkt
Nov 21 at 21:38












There's no aldeed:simpl-schema there, you mean the aldeed:simple-schema?. No I'm not, would remove that
– Orion
Nov 21 at 21:52




There's no aldeed:simpl-schema there, you mean the aldeed:simple-schema?. No I'm not, would remove that
– Orion
Nov 21 at 21:52












Yes remove aldeed:simple-schema and remove everything that is blaze related if you only want to use react. Then please try again if the form is now rendering correctly.
– Jankapunkt
Nov 21 at 21:58




Yes remove aldeed:simple-schema and remove everything that is blaze related if you only want to use react. Then please try again if the form is now rendering correctly.
– Jankapunkt
Nov 21 at 21:58

















active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53417221%2fsimpl-schema-not-working-with-autoform-using-meteor-flow-db-admin%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown






























active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53417221%2fsimpl-schema-not-working-with-autoform-using-meteor-flow-db-admin%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Contact image not getting when fetch all contact list from iPhone by CNContact

count number of partitions of a set with n elements into k subsets

A CLEAN and SIMPLE way to add appendices to Table of Contents and bookmarks