Importing data base services for question and answers?
I think "put" was the default.
Catch up wih the Appery.io community on our forum. Here you'll find information on the lastest questions and issues Appery.io developers are discussing.
https://forum.appery.io/
I think "put" was the default.
Thanks, so does that cover step 2?
Okay, so if put was in fact default, i'm moving to step 3 and just going to
Create New
Service
and selected Generic Security Context, is all i checked for now.
Ill be reading 3.1 and a lot of tutorials and documentation tonight, thank you...
Then would that complete 3.1, once this is set proper?)
Is it safe to leave this page with the default name at top and do I need put something in parameter yet, this pager?
Then I go to add custom implementation.
and select javascript right!?
Is Get the default method, switched and forgot which one was default.. ?
Do I? paste this in the page once selecting javascript from adding custom implementation, through the screen above.
Appery.MySecurityGeneric = Appery.createClass(SecurityContext, {
invoke: function(service, settings) {
var oldSuccess = settings.success;
var onSuccess = function(value, other){
//here you need to use JavaScript shuffle function:
//To see what stored in the value variable please use following code:
console.log("value = ");
console.log(value);
oldSuccess.call(this, value, other);
};
settings.success = onSuccess;
Appery.MySecurityGeneric.$super.invoke.call(this, service, settings);
}
});
you gave me this initially..