Re: How to load openui5 using the file system reusing 'resources' folder...
OpenUI5 now includes the ability to easily run a simple node.js server via grunt, see the following instructions openui5/developing.md at master · SAP/openui5 · GitHub I expect the browser security is...
View ArticleRe: How to load openui5 using the file system reusing 'resources' folder...
Unfortunately --allow-file-access-from-files doesn't seem to solve the issue.I tried running chrome like this, I made "security.fileuri.strict_origin_policy" setting from Mozilla = false and it didn't...
View ArticleRe: SAPUI5 downloadable package: where can I find it?
Hi Piotr, I think the UI5 package can only be downloaded from SAP market place and not here from SCN. If you do not need any specific component of the UI5 library which are under a special licence, you...
View ArticleRe: List/Items Binding in XML View
Thank you .. This is weird, I have the following added to my view and it works <Table items={"EntityName"} > The moment I add a /, it does not display the items. BTW, I am calling oData...
View ArticleRe: List/Items Binding in XML View
Your quotes are misplaced. They are before and after the braces.
View ArticleRe: List/Items Binding in XML View
oh yes, i do have that in place.. i wrote it freestyle so missed out here.. so the following works <Table items="{EntityName}" > </Table> However it does not work if I add<Table...
View ArticleRe: List/Items Binding in XML View
This is the difference.If you put a '/', then context is considered from the route. Without '/', the bound context is relative to the current table context. For Example: Consider a Table bound to...
View ArticleRe: SAP UI5: Navigation from Master page and Detail page through two...
Hi vikram,use this code handleListSelect: function(oEvent) { var oListItem = oEvent.getParameter("listItem") || oEvent.getSource(); // trigger routing to BindingPath of this ListItem - this will...
View ArticleGot a problem while using event of radiobutton in controller
Hi ,Actually i am learner of UI5,While creating a radio button in MVC architecture i got some problem.I am trying to get an alert message with the text for which the selected the Radio button.Actualy i...
View ArticleRe: Got a problem while using event of radiobutton in controller
in the view, replace the select event handlerselect : [oController.alere(),oController] in the controller, oEvent.getSource().getText()
View ArticleRe: Got a problem while using event of radiobutton in controller
HI, If possible Can u explain if we are sending event to controller
View ArticleRe: Combine OR & AND filter
Hello Jason, Sorry for the late reply but managed to got this working. Doing the same thing but in a different manner. Thanks again for your help. Cheers,Gourav
View ArticleSlider control for Time in SAP UI5
Hi, I am new to UI5 and have a small application development. I need help with 2 Custom slider controls. - Slider Control for Time to be added on a popup screen. Attaching a sample image of the...
View Articlenested view access in all the pages.
Hi, I have a nested view and I need to show(update data) same view in all the pages. // calling the instance of view with Id viewIDvar myView1 = sap.ui.getCore().byId("viewId"); The above code is...
View ArticleRe: Disable keyboard support
Hi Cem, You could try calling e.preventDefault on your overridden methods. Regards,Kimmo
View ArticleHow to delete rows in a sap.m table (XML View) with multiple selection?
Hi All, i have create a table with a button in the toolbar. I want select some rows and push thebutton "Delete Item" to delete the selected rows and update the model. Ideas? here the link to the code:...
View ArticleRe: XML List Binding to a filtered path
Hi Stefan, the Model is not named i tried to name it as well and use name>attribute also didnt work. cheersKay
View Article