getBindingContext() Returns undefined

后端 未结 2 1910
天命终不由人
天命终不由人 2020-11-27 23:23

I am working on a SplitApp. On selecting an item from the list, it says

Uncaught TypeError: Cannot read property \'getPath\' of undefined

相关标签:
2条回答
  • 2020-11-27 23:27

    getBindingContext(sModelName?)

    Get the binding context of this object for the given model name. If the object does not have a binding context set on itself and has no own Model set, it will use the first binding context defined in its parent hierarchy.

    You have given name to the model (this.setModel(oModel, "data")). Specify the model name (oItem.getBindingContext('data')) while accessing Binding Context.

    0 讨论(0)
  • 2020-11-27 23:45

    Try:

    entity: oItem.getBindingContext("data").getPath().substr(1),  
    

    You have to pass the name of the model to 'getBindingContext()', if the bound model has been named.

    0 讨论(0)
提交回复
热议问题