Has anyone tried loading data from new UI in Snowflake? There is a load data option in classic web interface; however, I cannot find anything like that in new UI.
I understand focus of new UI and Snowsight is towards data analytics, wondering if load data option has been removed from new UI!
Snowsight doesn't have yet built in the functionality of loading data as in Classic UI.
There is a plan to add this functionality, but I don't have any timeliness yet.
Related
I am working on a project that shows live currency prices. I have to refresh the pricing data on the page dynamically. In this project I am using Django and SQL server. I could not figure out how to make it work using triggers and AJAX because AJAX needs an event to run like a user event or timer (that very bad for performance). Further, triggers can not be processed by Django. Is there a way to do it? Thank you for your help.
I want to build an app that would load all the data on first startup so app can be used offline. I also want to refresh the data periodically.
Does anyone have any experience designing that kind of application? I thought of using Firebase/AWS appsync but they don't load the data on startup. They cache the data once you load the page.
The data i have is from wordpress custom posts as well as some documents, images etc. How can I create a functionality to load the data on startup and keep it sync with the server.
Any link to example opensource/github/npm project would be helpful.
Thanks.
You could use that pattern,
start by loading your content using a hook, display a loading screen. Once content has loaded, just display the app.
Therefore you can rely on some cache, this is working pretty well with apollo client JS or things like https://github.com/tannerlinsley/react-query
This article can help your for your app start:
https://medium.com/javascript-in-plain-english/how-to-handle-and-design-the-startup-of-a-react-application-da779f3727e5
Here is a problem that I am working on:
There is a view and it has a collection. I want to update the UI when the user interaction results in a model being added to the collection. The UI update should be instantaneous. If the web app is open in multiple browser tabs or windows then the view should get updated in all the tabs.
Possible Solution: Use localStorage for caching the data in the browser. Sync with the local server immediately and perform remote sync in the background. Bind UI updates with updates to the localStorage. There are plugins like Backbone.LocalStorage and Backbone.DualStorage. I went through their source code and these plugins do not take care of conflict resolution with server updates i.e. before syncing the data with the localStorage they donot check if the data was synced with the remote server.
Can anyone help me with this? Links to github repos, stackoverflow discussions are welcome.
I'm trying to create an off-line data collection app, using AngularJS.
I think, adding Breeze.js should help with saving and querying data to and from the browser local storage:
1) present the user with angular data entry form
2) when the "save" button is clicked - create a new Breeze entity and store it locally
3) the next time this form is used - create a second entity, and add/save it as a part of the same collection
I was wandering if anyone have tried to do something similar and could give me some pointers of how this is done.
I think it's viable and these links should help you to get started:
http://www.breezejs.com/documentation/querying-locally
You also might want to check this Angular sample aswell:
http://www.breezejs.com/samples/todo-angular
One caveat you have to have in mind is that Breeze will need to load the model's metadata from somewhere. Typically you hit a Web API asynchronously and get the metadata from there. However, on your particular scenario you should give a look at trying to load your metadata from a script file. Here's an how-to and discussion about it:
http://www.breezejs.com/documentation/load-metadata-script
i am able to refresh view page using actionpoller at some interval time in salesforce but
i want to refresh my datatable, only when any changes made to the object that is bind to my view page like insert , update ,delete happen to object must reflect my datatable automatically.
please guide me..
Thanks
You can use Force.com Streaming API for this. Force.com Streaming API Developer's Guide contains the details regarding how to use it along with a example of refreshing a Visualforce page automatically using streaming api.