cancel
Showing results for 
Search instead for 
Did you mean: 

How/where do I catch my selection?

Former Member
0 Kudos

Hi

I have created a jQuery/BSP mobile site, and it show my open sales orders.

In my main.htm view I have (among other lines of code), these lines - that shows me a button with a sales order:

 
  <div data-role="content">
  <form id="create_request" action="" method="">
     <fieldset>
     <div data-role="fieldcontain">
       <input type="submit" name="submit" class="button" id="create_button"  value="<%= <ls_open_so>-VBELN %>"></input>
     </fieldset>
  </form>
  </div>

When the user select the button, I want to catch the sales order number, and show informations from the sales order in another view.

I have created an external breakpoint in following methods of the controller:

DO_REQUEST

DO_HANDLE_EVENT

PROCESS_INPUT

But I don't get in there.

Do I miss something in my code, so my DO_REQUEST method will catch my selection?

Best regards.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Found a solution.

I changed my code to:


<div data-role="content">
<form id="create_requestxx" action="mobilemain.do" method="POST">
   <fieldset>
   <div data-role="fieldcontain">
    <input type="hidden" name="vbeln2" id="vbeln2"  value="<%= <ls_open_so>-VBELN %>" />
    <input type="submit" name="vbeln" id="vbeln"  value="<%= <ls_open_so>-VBELN %>" data-role="none" />

</div>

There are extra spaces in above code, so I could post it in the forum.