Re: DataSet Binding Context Path.
Hi Sarath, Here is the code from the same example which you provided: selectionChanged: function search(oEvent) {var idx = oEvent.getParameter("newLeadSelectedIndex");alert("Product...
View ArticleRe: DataSet Binding Context Path.
var idx = oEvent.getParameter("newLeadSelectedIndex");oDataSet.getItems()[idx].getBindingContext()
View ArticleRe: DataSet Binding Context Path.
Hi Kedar, Thanks for the reply. I'm more looking for binding context and spath of the model. The Index value is changing based on filters which I dont want. thanks.Sarath.
View ArticleRe: DataSet Binding Context Path.
By using that also I'm not getting any context . Thanks.
View ArticleRe: Integrating ECC Workflows in SAP UI5 without gateway
Hi Ajay, SAPUI5 application are based on model view controller (MVC) concept. Model holds the data from the backend/database. Per the guide - SAPUI5 SDK - Demo Kit the preferred way to get data from...
View ArticleAutocomplite define the size of the list
Hi Experts, I use sapUi5 autocomplite control and I use also the secondery value,sometimes the secondery value is longand the listbox is becoming larger then the textBox(the autocomplite control) I...
View ArticleRe: how to get selected values from multi combobox in xml views from sapui5
use getSelectedKeys() method.
View ArticleRe: DataSet Binding Context Path.
Hi, Hope this helps: oEvent.getSource().getItems()[1].oBindingContexts.undefined.sPath there could be better way to retrieve this info.
View ArticleRe: Autocomplite define the size of the list
it will depend on how long you want to set the width. normally you would want to set it to a specific size because your records may get too long.. or what if your record can become way too long?I would...
View ArticleRe: unable to include maps in fiori extension application
Hi Vidya,At worst, just copy and paste into the Discussion. Maksim Rashchynski, can you suggest how he should provide the code so it can be reviewed? I rarely do so and when I do it looks ugly....
View ArticleRe: I need help developing a UI5 prototype
but document says to add these and save ;-) MasterTitle=Sales Orders DetailTitle=Sales Order
View ArticleRe: I need help developing a UI5 prototype
to the file formatter.js ?? and it comes up with the red error line below it and a red x by the side is that ok for now or??
View ArticleRe: I need help developing a UI5 prototype
seems like there is an error there copy/paste from page 22 so for page 15 - just i18n/messageBundle.properties NO formatter.js you can post a comment under article with correction funny, does that...
View ArticleRe: I need help developing a UI5 prototype
Get in I might be 99% useless but I could have actually contributed !!! So put thatMasterTitle=Sales OrdersDetailTitle=Sales Orderin the messageBundle.properties file. So no formatter.js is required in...
View ArticleBinding OData Service which returns an Array
Hi Sakthivel, Many thanks for resolving the last issue and would appreciate if you can advice on this issue as well.In the same application i am consuming another odata service which returns the array...
View ArticleRe: I need help developing a UI5 prototype
yes, create Component.js in WebContent content should be jQuery.sap.declare("sap.ui.demo.myFiori.Component"); sap.ui.core.UIComponent.extend("sap.ui.demo.myFiori.Component", {createContent :...
View ArticleRe: Databinding to enabled property on SAPUI5 button
I'm not sure if I've added that call to the right place or not. I put it in the oData read success callback, and it doesn't seem to hit the 'get' ever. The button is always enabled. Modified...
View ArticleRe: Databinding to enabled property on SAPUI5 button
var data = {modelData: response.data.results}; Object.defineProperty(data, "isSaveEnabled", { get: function () { return...
View ArticleRe: Binding OData Service which returns an Array
Hi Swati, Why would you use bindProperty instead of directly binding the property text, something like this: oTable.addColumn(new sap.ui.table.Column({ label: new sap.ui.commons.Label({text:...
View Article