former_member1090459
Explorer
Member since ‎2014 Sep 27

User Statistics

  • 31 Posts
  • 1 Solutions
  • 0 Kudos given
  • 0 Kudos received

User Activity

Hi everyone. I'm trying to Bind a control to a JSON Model, but doesn't seem to be working: // Model With Data var lco_Model = new sap.ui.model.json.JSONModel( {      Data: [ {      task : "done",                          value : "10" },             ...
Hi everyone. I have been trying to create a view using 'SET' functions, but no luck. The code below works. var lco_View = new sap.ui.view( {    id: "Tasks",     viewName: "zbc_ui5_app01.Tasks",     type: sap.ui.core.mvc.ViewType.JS }); lco_MasterShel...
Hi everyone.The following code works: var oDialog = new sap.ui.commons.Dialog(); oButton = new sap.ui.commons.Button(); oButton.setText("Close"); oButton.attachPress(HandleButtonClick); oDialog.addButton(oButton);                  // Open Dialog oD...
Hi everyone. The following works: var oDialog = new sap.ui.commons.Dialog(); oDialog.setTitle(sName);                 oButton = new sap.ui.commons.Button(); oButton.setText("Close"); oButton.attachPress(HandleButtonClick); oDialog.addButton(oButton...
Hi everyone. The following works: // Create JOSN Model Instance var lco_JSM = new sap.ui.model.json.JSONModel(); // Create JSON lco_JSM.setJSON(      '{ "Data": [{"Title": "Mr.",' + '"FName": "John", "LName": "Doe"},'           + '{"Title": "Mrs.", ...