Perform Multiple Actions for Button Click Event

When I Click Edit Button , Selected Table rows value should return and then Other TAB Create Button Should enable

Hello @ranjisona

You can set custom action for the button and write your own logic for this action:

Screen descriptor:

<table id="myTable">
   <actions>
      ...
      <action id="myAction" invoke="myMethod"/>
   </actions>
   <buttonsPanel>
       <button action="myTable.myAction"/>
       ...
   </buttonsPanel>
</table>

Screen controller:

    public void myMethod() {
        // your logic here
    }

Regards,
Daniil.