I'm trying to get an access to datapoints in new cumulocity version. In older version such things as c8yDataPointSvc and schemaPropertiesSvc. I can't seem to find them anywhere. Basically I need components to work with datapoint as in the picture below. I would appreciate any info on how to either reuse those old components or a new way of using them as there is such. Thanks a lot!
Cumulocity - get access to datapoint modal
156 Views Asked by Alice Arkalykova At
1
There are 1 best solutions below
Related Questions in ANGULAR8
- Angular Navigate Routing between parent and child
- Data not displayed unless manual page refresh Angular 8
- Angular 8 - how to invoke global method?
- Error: InvalidPipeArgument: 'Unable to convert "27-08-2020" into a date' for pipe 'DatePipe'
- Angular 8 and Okta logout not working as user is redirected inside the app
- Select dropdown shows blank when NG model is null
- Open a word document file in web based ms office using Angular application
- okta and angular 8 authentication
- How to test ElementRef in Angular 8
- button disabled not working properly angular
- Angular 8 Injectable Globals does not maintain value
- How to validation a url inside a quill editor link
- How we can fetch route parameters in lazily loaded module in Angular
- How to pass a string from HTML to the Component on Angular 8 using (click) function?
- Angular 8 ngForm not performing action
Related Questions in CUMULOCITY
- How to fetch fieldname and structure for additional properties in operation, managedObject etc
- Cumulocity - CumulocityLongPollingTransport Idle
- Are there any solutions to debug CEL for cumulocity development?
- How to get time String from current_timestamp().toDate() in cumulocity?
- Usage of "advice" in Cumulocity Real Time Notifications
- How to delete a real time module in cumulocity?
- POST API call using APAMA script
- Cumulocity: Call all event by deviceId and datetime
- Get application managed object with Cumulocity Microservice JavaSDK
- Cumulocity - get access to datapoint modal
- Cumulocity Tools - Deploy application as zip via Tools
- How to automate web app upload to cumlocity using the azure devOps
- Microservice hosted on Cumulocity
- Updating c8y_RequiredAvailability using MQTT Templates
- Cumulocity : I can create a new role and its permission
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?

I see here three options. First what I am going to say is that we in Cumulocity use a hybrid approach for our core applications, since we have a lot of functionalities still written in AngularJS. Same as the one that you need. There is no equivalent in Angular yet. That is why you have several options to use those old services.
One is in a hybrid application to you a bridge service where you can define the upgraded c8yDataPointSvc like that -
This ng1Injector is a constructor input variable that we define when we provide that bridge service in the upgrade module like this:
This way you will still have an Angular application, you will still use the provided from us factory c8yDataPointSvc in your Angular application just by upgrading it using anguar hybrid app upgrade functionality.
Other option is to just keep your widget an AngularJS one and when you have a hybrid app, you can just import the AngularJS widget and the angular compiler will take care of the upgrade/downgrade. This is what we are doing with a lot of our customers, who have angulatJS widgets and are using Cumulocity versions above 10.5.0.*
And the last option will be to not use the AngularJS services you need and using our SDK just implement the functionalities used from c8yDataPointSvc. But that will be the biggest effort probably.