How to Show Data which comes from API in lightning UI page salesforce . I get the Data in the debug - apex

can any one suggest me how to what can i do to show data in UI . because i get into the login successfully but don't understand that that now how the data i will show on UI eg. Name , emai ID , profile picture etc.

Related

Flutter - retain Values after Refresh

I want to learn the best solution for the below mentioned issue.
I'm Using the GETx library for my flutter project.
I have a home page which shows summarized information of some reports. I can choose to create a report. After saving it (inserts into db), i'll be provided with an ID to display on screen. After refresh, the ID and variables reset. (Controller re-init)
Is it best to use SharedPreference in order to save the ID value? And when user refreshes the page, i can query the DB for the ID and display it on page.

Is there any way to fetch the google sheet (gsheet) data in flutter and display realtime updates whenever there is any change in google sheet itself?

I am developing an application where a list is displayed according to the user input. The list is loading and getting displayed when the application is loaded and whenever the user inputs the data through the text fields(in the app) and the cells (in the google sheet) gets appended too ( which is what I want). But I would like to be able to get realtime list append in the application whenever any new data is inserted in the google sheet itself. So how do I listen for changes in google sheet everytime there is any change and update/append the list (in the application) according to it? Currently, whenever the data is inserted in the google sheet itself, the data only gets loaded when I hot restart the application.
Have you tried Apps Script Triggers? Maybe the function onEdit(e) can help:
https://developers.google.com/apps-script/guides/triggers

RESTful interface to get Kibana Visualization or Dashboard URL's

Using the elastic REST API and the JSON structure of a particular visualization i have loaded(imported) my charts(visualization)in ".kibana" index .The same is shown in list of visualizations stored in kibana UI .But instead of coming to the UI is there a way to get the URL or the shareable iframe link of this newly created visualization through some rest api .
In short is there a complete REST based flow to create a visualization and retrieve its shareable URL so it can be embedded at required place .

want a redirection drop-down menu of city wise stores for multi store in opencart

I am running multi store city wise on Opencart. I want to have a dropdown list of my stores on main store. So, visitors can select their city and they should be redirected to that store and will be saved in cookies. So, next time when they visit my website they should be automatically diverted on their past selection of city.
My store is www.orgoearth.com
multi stores are www.city.orgoearth.com for example www.vadodara.orgoearth.com
You can handle this city based URL redirection in Opencart url handler
seo_url.php [path:catalog/controller/startup/seo_url.php].
In this file, you can set the cookies and check the cookies condition everytime.

Append Form text field value alone in the url

I am trying to create a sample Online shopping application using SPRING+REST. I have a 1000 of products and I would like to make use of #RequestMapping("watches/{id}") annotation . But i dont know how to send the id form field value alone while submitting a form in jsp.
I want something like this
www.example.com/watches/1001
Please help me out
I guess you will have some jsp page which consists of all watches. This web page can be access by localhost:8080/watches URL.
If user click on any watches, user will land to localhost:8080/watches/{watch-id} page as the click on watch will redirect the request.
If your JSP is form based page, then user need to enter the watch-id ( or watch name which we need to map to watch id) and click on submit button will redirect the request to localhost:8080/watches/{watch-id}. Please let me know if you are ok with this.