Fetch Selected Row from table and Bind with Simple Form | SAP UI5 Fiori

Поделиться
HTML-код
  • Опубликовано: 15 дек 2024

Комментарии • 1

  • @maheshsirsat1811
    @maheshsirsat1811  11 месяцев назад +1

    mode="SingleSelectMaster"
    selectionChange="selectRow"
    --------------------------------------------------
    selectRow(oEvent){

    var selectedRow=oEvent.getParameter('listItem').getBindingContextPath()
    console.log(selectedRow);
    var myform=this.getView().byId('myForm')
    myform.bindElement(selectedRow)


    }