Search found 26 matches

Go to advanced search

by girish
Sat Dec 06, 2014 6:28 pm
Forum: Issues
Topic: Image loader
Replies: 1
Views: 302
 
Jump to post

Image loader

Is there any image loader available? I tried this and didn't work. function loadImage(imageNameArray){ var images={}; for(i=0;i (less than) imageArrayName;i++){ images[i] = new Image(); images[i].onLoad = function(){ PostImageLoaded(); }; var src = Apperyio.getImagePath(imageNameArray[i]); images[i]...
by girish
Sun Nov 23, 2014 10:11 am
Forum: Issues
Topic: Change background color of list
Replies: 1
Views: 351
 
Jump to post

Change background color of list

I am unable to change the background color of list. This is what i gave based on the help doc ( http://devcenter.appery.io/documentat... ) - .listClass li a{ background-color:transparent!important; } and assigned this class name to my List component. However it doesnt take this value and takes the d...
by girish
Sat Nov 22, 2014 4:31 am
Forum: Issues
Topic: Set backgroud-image property for grid
Replies: 1
Views: 303
 
Jump to post

Set backgroud-image property for grid

I would like to have an image and a label on top as a caption to the image. So i am planning to use Grid and set this image as the background for the grid and add the label on top. This is the CSS i created and assigned as classname to grid, but it doesnt work. Please help. .my-grid { background-ima...
by girish
Mon Nov 03, 2014 12:56 am
Forum: Issues
Topic: How to Invoke another server code script from a server code script
Replies: 6
Views: 820
 
Jump to post

How to Invoke another server code script from a server code script

Yes, but the way I invoke differs, correct? When I invoke A directly, request.user.id is part of session request header. But when the same is invoked from B, this request header is not passed and hence request.user.id doesn't work. So how do we pass the request headers as well to the called script?

by girish
Mon Nov 03, 2014 12:52 am
Forum: Issues
Topic: ScriptCall Server Code Response
Replies: 8
Views: 1282
 
Jump to post

ScriptCall Server Code Response

Thanks. This is also available under "rest information". Now my question is, will the request header be passed as well to the called script? It doesn't work for me when I call a script, say A, that contains the line request.user._id.

by girish
Fri Oct 31, 2014 7:00 pm
Forum: Issues
Topic: How to Invoke another server code script from a server code script
Replies: 6
Views: 820
 
Jump to post

How to Invoke another server code script from a server code script

ok, I managed to find out id and alias name of a server code script. Now, say for example, A and B are two scripts. A: ... var userId = request.user._id; console.log(userId); ... B: ... var userId = request.user._id; console.log(userId); var res = ScriptCall.call("A_aliasName", {}, "b...
by girish
Fri Oct 31, 2014 6:44 pm
Forum: Issues
Topic: ScriptCall Server Code Response
Replies: 8
Views: 1282
 
Jump to post

ScriptCall Server Code Response

How do i get the id or alias name of a server code script?

by girish
Fri Oct 31, 2014 6:34 pm
Forum: Issues
Topic: How to Invoke another server code script from a server code script
Replies: 6
Views: 820
 
Jump to post

How to Invoke another server code script from a server code script

When i am calling the script from another script, both of which are running at server end, why unnecessarily an XHR request to be made? I was expecting something similar to http://devcenter.appery.io/documentat... . So, in this case, there are two ways to invoke, via an id to the script or by alias ...
by girish
Fri Oct 31, 2014 7:35 am
Forum: Issues
Topic: How to Invoke another server code script from a server code script
Replies: 6
Views: 820
 
Jump to post

How to Invoke another server code script from a server code script

I have two server code scripts A and B. I want to invoke script A from script B by passing parameters and use the result set for further steps in script B. How do i do that?

by girish
Sun Oct 26, 2014 1:08 pm
Forum: Issues
Topic: How do i set "Default Date", "Min Date" and "Max date" values for a date picker using java script?
Replies: 7
Views: 867
 
Jump to post

How do i set "Default Date", "Min Date" and "Max date" values for a date picker using java script?

Thanks, that worked. Now i need to get the date value set. When i tried this, it doesnt work

Apperyio("mobiledatepicker_13").val()

Go to advanced search