HTMLB Automatische Schaltung nach Form / Button

Die Frage ist als "gelöst" markiert. Den entsprechend Beitrag findest du hier.

ABAP Web Dynpro, BusinessServerPages; Erstellung von Webapplikationen.
5 Beiträge • Seite 1 von 1
5 Beiträge Seite 1 von 1

HTMLB Automatische Schaltung nach Form / Button

Beitrag von Sanchez ( / / 0 / 3 ) »
Guten Tag zusammen,

Ich habe ein Problem, undzwar kreiert HTMLB nach meiner Schaltflächen Grafik immer automatisch eine Leerzeile! d.h. mein Design wird verschoben!

folgendes steht bei mir in einem LOOP (Ja ich brauch die Form in einem Loop)

Code: Alles auswählen.

        <htmlb:form id       = "<%= po_show-xubname %>"
                method       = "post"
                encodingType = "multipart/form-data" >

               <htmlb:inputField id = "deletename"
                            visible = "false"
                            value   = "<%= po_show-xubname %>"
                            size    = "0"
                            width   = "1"/><htmlb:image id        = "del"
                            src     = "@11@"
                            onClick = "onInputProcessing(delete)"
                            tooltip = "Position löschen" />

    </htmlb:form>
kenne mich mit HTMLB leider noch nicht so aus, hoffe ihr könnt mir helfen :(

gesponsert
Stellenangebote auf ABAPforum.com schalten
kostenfrei für Ausbildungsberufe und Werksstudenten


Beitrag von vvursT (ForumUser / 72 / 0 / 0 ) »
wäre gut wenn du erst einmal das umfeld, also den loop etc auch dazu schreibst sonst wirds schwierig deinen fehler zu verstehen...
am besten das gesamte layout dazu

Beitrag von Sanchez ( / / 0 / 3 ) »
ok, also der code mit loop ist:
<htmlb:form id = "Mid"
method = "post"
encodingType = "multipart/form-data" >
<htmlb:group id = "group2"
bodyColor = "whitesmoke"
design = "SAPCOLOR"
width = "500" >
<htmlb:groupBody>
<htmlb:label id = "authorlname_Label"
for = "authorlname"
text = "Vertreter"
tooltip = "Vertretername" />
<htmlb:inputField id = "authorlname"
value = "<%= authorlname %>" />
<htmlb:button id = "add"
text = "Vertreter hinzufügen"
onClick = "onInputProcessing(add)" />
</htmlb:groupBody>
</htmlb:group>
</htmlb:form>

</td> </tr> </table>
<!-- Form für Vertreterpositionen -->
<htmlb:group id = "group3"
bodyColor = "whitesmoke"
design = "SAPCOLOR"
width = "500" >
<htmlb:groupBody>
<table border="1" width="400px" height="5px">
<!-- Wenn bereits Vertreter deklariert in der DB -->
<%
if po_show_st is not initial.
%>

<%
loop at po_show_st into po_show.
%>
<tr>
<td width="100px" class="bspTbvCellStd"><%= po_show-uname. %></td>
<td width="200px" class="bspTbvCellStd"><%= po_show-xubname. %></td>
<td class="bspTbvCellStd" width=70px>
<htmlb:form id = "<%= po_show-xubname %>"
method = "post"
encodingType = "multipart/form-data" >
<htmlb:inputField id = "deletename"
visible = "false"
value = "<%= po_show-xubname %>"
size = "0"
width = "1" />
<htmlb:image id = "del"
src = "@11@"
onClick = "onInputProcessing(deleteööö)"
tooltip = "Position löschen" />
</htmlb:form>
</td>
</tr>
<%
endloop.
%>
<%
endif.
%>
<!-- Aktuelle, noch nicht gespeicherte Sätze aus Form (wird beim speichern geleert) -->
<%
loop at po_auth_st into po_auth.
%>
<tr>
<td width="40px" class="bspTbvCellStd"><%= sy-uname. %></td>
<td width="200px" class="bspTbvCellStd"><%= po_auth-lname. %></td>
<td width="40px" class="bspTbvCellStd">
<%
endloop.
%>
</table>
</htmlb:groupBody>
</htmlb:group>
</htmlb:page>
</htmlb:content>

Beitrag von Gast ( / / 0 / 3 ) »
hier nochmal mit richtiger formation, tut mir leid *g*

Code: Alles auswählen.



    <htmlb:form id           = "Mid"
                method       = "post"
                encodingType = "multipart/form-data" >
      <htmlb:group id        = "group2"
                   bodyColor = "whitesmoke"
                   design    = "SAPCOLOR"
                   width     = "500" >
        <htmlb:groupBody>
          <htmlb:label id      = "authorlname_Label"
                       for     = "authorlname"
                       text    = "Vertreter"
                       tooltip = "Vertretername" />
          <htmlb:inputField id    = "authorlname"
                            value = "<%= authorlname %>" />
          <htmlb:button id      = "add"
                        text    = "Vertreter hinzufügen"
                        onClick = "onInputProcessing(add)" />
        </htmlb:groupBody>
      </htmlb:group>
    </htmlb:form>

           </td> </tr> </table>
    <!-- Form für Vertreterpositionen -->
    <htmlb:group id        = "group3"
                 bodyColor = "whitesmoke"
                 design    = "SAPCOLOR"
                 width     = "500" >
      <htmlb:groupBody>
        <table border="1" width="400px" height="5px">
        <!-- Wenn bereits Vertreter deklariert in der DB -->
        <%
          if po_show_st is not initial.
        %>

          <%
          loop at po_show_st into po_show.
          %>
        	<tr>
                 <td width="100px" class="bspTbvCellStd"><%= po_show-uname. %></td>
                 <td width="200px" class="bspTbvCellStd"><%= po_show-xubname. %></td>
                 <td class="bspTbvCellStd" width=70px>
                    <htmlb:form id           = "<%= po_show-xubname %>"
                                method       = "post"
                                encodingType = "multipart/form-data" >
                      <htmlb:inputField id      = "deletename"
                                        visible = "false"
                                        value   = "<%= po_show-xubname %>"
                                        size    = "0"
                                        width   = "1" />
                      <htmlb:image id      = "del"
                                   src     = "@11@"
                                   onClick = "onInputProcessing(deleteööö)"
                                   tooltip = "Position löschen" />
                    </htmlb:form>
                  </td>
             </tr>
          <%
          endloop.
          %>
        <%
          endif.
        %>
        <!-- Aktuelle, noch nicht gespeicherte Sätze aus Form (wird beim speichern geleert) -->
        <%
          loop at po_auth_st into po_auth.
        %>
        	<tr>
                   <td width="40px"  class="bspTbvCellStd"><%= sy-uname. %></td>
                   <td width="200px" class="bspTbvCellStd"><%= po_auth-lname. %></td>
                   <td width="40px"  class="bspTbvCellStd">
        <%
          endloop.
        %>
        </table>
      </htmlb:groupBody>
    </htmlb:group>
  </htmlb:page>
</htmlb:content>


Beitrag von vvursT (ForumUser / 72 / 0 / 0 ) »
da fällt mir jetzt auch nicht direkt eine lösung ein bis auf das, dass ich auch haufenweise layout probleme im bezug auf die verwendung von htmlb habe... dabei sehe ich grad du benutzt ein normales html table layout für deine seitenstrukturierung. könntest du mal deine ganze seite posten, damit ich schlussfolgern kann nach welcher syntax ich beide sachen verwende ? habe bis jetzt bloss ein entweder/oder hinbekommen .. danke

Seite 1 von 1

Vergleichbare Themen

0
Antw.
153
Views
5
Antw.
4774
Views
Per Button klick ein symbol in den Button einfügen
von alex1986 » 03.08.2011 15:57 • Verfasst in ABAP® für Anfänger
1
Antw.
444
Views
statt Button F8 Button Close setzen
von HH_ABAP » 18.05.2023 21:16 • Verfasst in ABAP® für Anfänger
0
Antw.
1643
Views
htmlb: Treenode mit checkbox
von ShaolinSam » 14.07.2006 14:49 • Verfasst in Web Application Server
8
Antw.
3423
Views
HTMLB Tree Problem
von Karina » 18.01.2006 10:43 • Verfasst in Web-Dynpro, BSP + BHTML

Über diesen Beitrag


Die Frage ist als "gelöst" markiert. Den entsprechend Beitrag findest du hier.

Unterstütze die Community und teile den Beitrag für mehr Leser und Austausch

Aktuelle Forenbeiträge

Post-Methode für API´s
Gestern von Bright4.5 1 / 135

Newsletter Anmeldung

Keine Beiträge verpassen! Wöchentlich versenden wir lesenwerte Beiträge aus unserer Community.
Die letzte Ausgabe findest du hier.
Details zum Versandverfahren und zu Ihren Widerrufsmöglichkeiten findest du in unserer Datenschutzerklärung.