I was wondering whether a Angular UI grid standalone is possible.
All of the examples use $http.get
which seem to need a server for angular to work.
Please help me with creating a desktop or standalone app using this technology.
I was wondering whether a Angular UI grid standalone is possible.
All of the examples use $http.get
which seem to need a server for angular to work.
Please help me with creating a desktop or standalone app using this technology.
The examples using a $http.get are pulling data from a ReST service, if you want to, you can assign your own data to the grid data through $scope.gridOptions.data = (location of data).
If you want to use a file to populate the ui-grid you will still have to perform a GET. Smil's example references assigning data to the scope inside of a javascript file, which if you need to perform a update/refresh of data you'll have to update the javascript file.
Look at https://electron.atom.io/ if you need help in creating a desktop app with HTML, CSS & JavaScript.
© 2022 - 2024 — McMap. All rights reserved.