IntroductionUploading files is a common requirement in various business scenarios. As SAP Build Apps developer, we are often required to add file upload capability into our apps to fulfill business requirements and enhance user experience.One of such...
IntroductionUploading files is a common requirement in various business scenarios. As SAP Build Apps developer, we are often required to add file upload capability into our apps to fulfill business requirements and enhance user experience.One of such...
As an app developer, we always look to make use of vast collection of existing NativeScript plugins to enhance our mobile application. So, I want to use this blog post to help you to achieve that with SAP Mobile Development Kit app.
SAP Mobile Devel...
In SAP Mobile Development Kit app, Offline OData allows your app to download media binaries from your OData backend and store them in the offline database. In order to use or display them in your app, you'd have to retrieve the binaries out from the ...
As an app developer, we always look to make use of vast collection of existing JavaScript libraries to enhance our application. So, I want to use this blog post to help you to achieve that with SAP Mobile Development Kit app.
SAP Mobile Development ...
@Ludovic_MOOS , no, they can still select multiple files in one go (using Pick Files), and then in your logic canvas, you just need to loop through the selected files and upload them one by one using "HTTP destination request" function.
Hi @Ludovic_MOOS , You can loop through the files array by repeating the logic flows while keeping track of the filesCount in a page variable, for example, and for each file, you post them via the "HTTP destination request".However, if you need to se...
Hello KhaledGood news, MDK 24.11.0 which was just released last week introduced this new API:binaryToBase64String on the ClientAPI classHere's an example using your initial sample code as base.export default async function getImageString(clientAPI) {...
Hi @Girish_KR , I managed to get the working sample for the data, so don't worry about it. I noticed a few things:Padding: To fix the cut off on the left side, you need to add some left padding to your StackLayout e.g. this._StackLayout.paddingLeft =...