Re: Version of the AS Java
From the NWDS update site https://nwds.sap.com/swdc/downloads/updates/netweaver/nwds/nw/730/doc/update.html This procedure describes the available options for update of a Developer Studio with version...
View ArticleRe: Select Paramter in Dataset bindData
Hello Hriday, Did you find a solution for the problem?. If so please post your code here since I am working on something similar to this and this will help me too. Thanks and RegardsSangamesh
View ArticleRe: PDF Viewer for SAPUI5 Application
Hi Danilo, would you please blog how you resolve you problem in detail? it's very usefull to me to know, how you embedd pdf.js into the ui5 framework. thangs in advance!
View ArticleSelect selectedItem not showing
Hello, I've a problem with my Fiori-like test application. When I place a select on my master-page then I have the same functionality as on...
View ArticleRe: How to get the ID from the XML tag , Fiori(UI5)?
Hi Georgi, You need to register list select event first in VIEW first, as follows: <List id="listId" select="onSelectEvent" mode="SingleSelectMaster"> <ObjectListItem...
View ArticleRe: How to add CSS to text
Hi Jason, I tried using ListBox like this- new sap.ui.commons.ListBox( "lb1", { items : $.map(SuggestHelp.split("-"), function(v, i) { return new sap.ui.core.ListItem({ text : v}); }), height :...
View ArticleRe: How to add CSS to text
If you are designing for mobile, perhaps you need a slighly different design? You could use the SearchField and update a sap.m.List, which allow you to use the CustomListItem? Many thanks,Jason
View ArticleRe: Check all/uncheck all on button press event in sapui5
Hi Experts, I have found one solution for the above problem. I don't know whether it is right or wrong approach but it is working as per my requirement.The solution is...
View ArticleAutocomplete box with OData service
Hello,I want to include an autocomplete box in my SAPUI5 Application that uses an OData Service for retrieving data. The OData Service is linked to a calculation view on the HANA System. The problem is...
View ArticleRe: Autocomplete box with OData service
Have you tried applying a filter to the oData model, you might need manually set the filter in the suggest event?? https://sapui5.hana.ondemand.com/sdk/#docs/guide/BindingAggregations.html Not sure how...
View ArticleRe: panel Expand/Collpase feature
Hi,I think you must use: oControl.getToggleExpandCollapse() By default, sapui5 creates setter/getter prototype methods on property declarations.Kind regards
View ArticleRe: Autocomplete box with OData service
I could use a filter but then it would be a predefined filter, isn't it? Instead the user shall be able to start writing and the autocomplete box suggests entries from the table.
View ArticleRe: Autocomplete box with OData service
I think you should be able to update the filter based on what the user has entered, either on LiveChange or suggest event. Something like: suggest: function(oEvent){ var sValue =...
View ArticlegetCustomData
I added one customData to my Button: var customData = new sap.ui.core.CustomData({ key : id }); customData.bindProperty("value", "example/id"); var button = new sap.ui.commons.Button({ lite : true,...
View ArticleRe: Autocomplete box with OData service
I tried your lines but it throws an error:' <what i typed in the box> has no method getParameter' could you explain where and how I have to insert your statement?
View ArticleRe: How to format a long value for chart axis label?
If i do this i have a long value again shown on the axis... I have a dataset like this {State: "State 1", Time: 132474985749}{State: State 2", Time: 8437823744356} Now i create a FlattenedDataset with...
View ArticlePossibility to consume BEx Queries in SAPUI5
Hello Guys, We are working in BW on HANA environment and would like to use the mobility feature of our SAP Product. And we know it supports HTML5 in Mobile devices. But we would like to know whether...
View ArticleRe: Possibility to consume BEx Queries in SAPUI5
Look up documentation on EasyQuery (BW 7.3 feature) and JSON Serialization . I've used SAPUI5 successfully to consume BEx Results in this manner. Serialize ABAP data into JSON format Note that you...
View Article"Reset" a DropdownBox / ComboBox
Hi everybody, I'm trying to realize some kind of a form reset functionality. To achieve this, I save the current values of the form fields with formField.data("oldVal",formField.getValue());and if the...
View ArticleRe: SAPUI5 App running on Portal - SSO?
Please check out Using the Generic HTML Portal Component - Portal - SAP LibraryIt allows to create a Portal Component based on UI5 code without having the original application in place.
View Article