Page 2 of 3

Importing data base services for question and answers?

Posted: Sat Jun 07, 2014 4:29 pm
by Travis6876874

I think "put" was the default.


Importing data base services for question and answers?

Posted: Sat Jun 07, 2014 4:32 pm
by Travis6876874

Thanks, so does that cover step 2?


Importing data base services for question and answers?

Posted: Sat Jun 07, 2014 4:39 pm
by Travis6876874

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.


Importing data base services for question and answers?

Posted: Sat Jun 07, 2014 4:41 pm
by Travis6876874

Ill be reading 3.1 and a lot of tutorials and documentation tonight, thank you...


Importing data base services for question and answers?

Posted: Sat Jun 07, 2014 4:58 pm
by Travis6876874

So on this page should I edit any of the fields I'm wondering?

Image


Importing data base services for question and answers?

Posted: Sat Jun 07, 2014 5:02 pm
by Travis6876874

Then would that complete 3.1, once this is set proper?)


Importing data base services for question and answers?

Posted: Sat Jun 07, 2014 5:11 pm
by Travis6876874

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!?


Importing data base services for question and answers?

Posted: Sat Jun 07, 2014 5:17 pm
by Travis6876874

Is Get the default method, switched and forgot which one was default.. ?


Importing data base services for question and answers?

Posted: Sat Jun 07, 2014 6:27 pm
by Travis6876874

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);
}
});


Importing data base services for question and answers?

Posted: Sat Jun 07, 2014 6:27 pm
by Travis6876874

you gave me this initially..