Admin panel for inputting data for Parse.com? [closed] - parse-platform

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 9 years ago.
Improve this question
If an app that uses Parse needs a web-based data admin system, what's the best way to go?
I know Parse.com already offers a data browser, but its main use case isn't for someone to mass enter data or perform admin functions. I know I can make one from scratch with the libraries found here on the Parse API Libraries page, but I was just wondering if there was a standard or most used way to use 3rd party admin panels.

Given that there is no "standard data admin", other than perhaps letting them edit all fields on all objects (which is provided by the data browser), I wouldn't expect to find some 3rd party admin panel.
What you do and don't expose in an admin interface often varies from product to product, some fields might be there only to support easier searching and be read-only (or hidden) even in admin screens.
Unfortunately that means you need to roll your own admin screens using whichever SDK works best for you.
Be aware that (last I checked) the JavaScript SDK only works for Internet Explorer if your pages are hosted on SSL (https), due to a quirk in IE. If you want to support IE you might want to use Parse's Cloud Hosting.

Related

Is there a way to use vb scripting in Sap Business Client on report (not a transaction)? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 6 days ago.
Improve this question
I try to use VBS to automate Excel download on Sap Business Client. Normally I would use the following option:
Using settings option to record VBS
This works great when interacting with transaction.
Lately I came across a different type of GUI-which looks different. In this screen there is no scripting option and even after I tried to record from a transaction and interact with it, it fails.
This picture shows how it looks on the tabs menu (it has Sap logo instead of normal transaction logo):
Tab menu report logo
Unfortunately I use Sap in an organization that does not allow for full code sharing, so this is why I attached only screenshots.
Any help or even a link to a documented API to interact with such type will be very appreciated.
I tried to search for any ideas, but couldn't find anything.
My guess is that the object type needs to be different than SAPGUI or SAPGUISERVER:
Set SapGuiAuto=GetObject("SAPGUI ")
But again, no other option works.

Custom tasks and default view in SAS Studio 3.5 [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I am creating a custom task in SAS Studio 3.5. I want to design a simple user interface so that users can select options and input parameters.
When SAS Studio opens, there is a code and log window, when the task is opened there are then a few extra tabs at the top.
I would like to know if
A) the log and code window can be deselected by default
B) if, when the task is opened, it displays only the user interface (form) to fill in.
I basically want as few things for the user to click on as possible.
The best way to deliver a modern UI is to use HTML5. This is waay easier than using SAS/AF, more supportable (plenty of web resource available in the market), scalable, requires no client install (virtually all clients have browsers!), and you can make use of the '000s of free libraries available (jQuery, Boostrap, HandsOnTable etc).
I have written a simple guide for building web applications with SAS:
http://rawsas.blogspot.co.uk/2015/12/building-web-apps-with-sas.html

Google Image App How to start? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I am planning to make a Mac application that works like Google Images for mobile. It takes the search results and makes it possible to swipe through them.
I am using a Mac, so I would like to use trackpad gestures. I think the system would be very user-friendly for going through high quality images quickly.
I am a beginner in respects to coding, but I do know the basics of C++.
Searched through to https://developers.google.com/gdata/docs/directory, but I can't see how Picasa would be of any use because i want to use the Google Images data or database (or what the technical term is).
As this is my first serious attempt at an application, I really don't know where to start.
As with most apps, there are two sides to this one:
The front end is your Cocoa-based user interface. This is where you would receive queries from the user (in a text field) and show the results (in image views), and where you would implement the swiping (in some kind of custom view that owns the image views).
The back end is doing Google Image Searches. This may or may not be written in Cocoa; you may decide to use somebody else's library written in some other language, but depending on what language that is, integrating it may be harder than porting it or writing your own from scratch.
The back end you'd want for this is Google Custom Search (found by searching for “search” on their developer site and then clicking through to the replacement for the first result, which is deprecated). You'll want to use their REST API, returning JSON, which you can parse using the NSJSONSerialization class.

How do I deliver a large amount of documentation in a portable format? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
I have a documentation set that I need to deliver to a variety of users. It is currently in HTML with a number of attachments with a total size of around 180MB. I have the following requirements:
It only needs to be viewable on windows.
The user must not need to install additional software prior to viewing the documentation over and above what is normally on the machine (MS Office, browser etc)
The entire set needs to be searchable (preferably including MS Office attachments)
(desirable) It needs to be distributable as a single file (.exe OK)
(desirable) It needs a compatible authoring tool
Any ideas on what would be a good way to do this?
Way out of my area of expertise, and it may not work with the office files, but Microsoft Compiled HTML Help looks promising.
One tool that we are considering to do this is TiddlyWiki which allows inline editing of the source and can be extended with plugins to look more like a traditional website and to provide better support for multi user editing.

Magento XMLConnect...what is it and how can I use it? [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
Can someone explain what the XMLConnect extension is and what it is used for? I know that in general it can be used to develop a mobile friendly site, but that's about as far as I've gotten with my Google searches. Does anyone have experience working with this extension and can provide some details and/or examples?
Thanks!
XMLConnect is, essentially, an XML service. One way to think of a "normal" Magento website is
Backend code adds things to carts, fetches products from database, etc.
Execution is handed off to the layout system
Layout system makes HTML/Javascript/CSS
Magento has a product called Magento Mobile, which lets you create an iPhone or Android application to sell products from your Magento system. Magento Mobile works something like this
Backend code add things to carts, fetches products from databases, etc.
Execution is handed off to an XML rendering system
XML is sent back to the phone
The binary application sitting on the phone processes the XML and makes the pixels on the phone look and act like a store
XMLConnect is the module that lets Magento do this. It creates XML requests/responses.
Additional Reading: Develop your own Magento mobile application

Resources