Autor Beitrag
Lisa
offtopic starofftopic starofftopic starofftopic starofftopic starofftopic starofftopic starofftopic star
Beiträge: 70



BeitragVerfasst: Mi 27.04.05 15:07 
Sorry aber ich hab bei self htm nix drüber gefunden

wie setze ich eine tabelle in eine tabelle bzw. spalte

thx schon mal

Moderiert von user profile iconTino: Titel geändert.


Zuletzt bearbeitet von Lisa am Mi 27.04.05 16:16, insgesamt 1-mal bearbeitet
WeBsPaCe
ontopic starontopic starontopic starontopic starontopic starhalf ontopic starofftopic starofftopic star
Beiträge: 2322
Erhaltene Danke: 1

FireFox 3, Internet Explorer 6 SP1
D1, D3Prof, D6Pers, D7Pers+Indy, VisualStudio Express
BeitragVerfasst: Mi 27.04.05 15:10 
Reden wir von HTML? Eine Tabelle in ner Tabelle? :arrow: Einfach nochmal die Tabellen-Tags in die Zelle einfügen. ;)
csigg
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starhalf ontopic star
Beiträge: 706

WIn XP, Win NT, Win2000, Suse8.0
Delphi 5, Delphi 6
BeitragVerfasst: Mi 27.04.05 15:11 
du musst enfach in die entsprechende Spalte/Zeile nochmal ne Tabelle einfügen


//Edit
Ok, war ein wenig langsam,....
Lisa Threadstarter
offtopic starofftopic starofftopic starofftopic starofftopic starofftopic starofftopic starofftopic star
Beiträge: 70



BeitragVerfasst: Mi 27.04.05 15:14 
Ja html..........danke schonmal
aber soll ich das in

<td table="bla">
oder
<td <table="bla">
.........ich bin ja so verzweifelt
ScorpionKing
ontopic starontopic starontopic starontopic starhalf ontopic starofftopic starofftopic starofftopic star
Beiträge: 1150

Win XP

BeitragVerfasst: Mi 27.04.05 15:16 
ausblenden Quelltext
1:
2:
3:
4:
5:
<table>
<tr>
<td><table><tr><td>Hallo</td></tr></table></td>
</tr>
</table>


Einfach nochmal einen Table in TD!
MfG, ScorpionKing!

_________________
Aus dem Urlaub zurück!


Zuletzt bearbeitet von ScorpionKing am Mi 27.04.05 15:30, insgesamt 2-mal bearbeitet
Klabautermann
ontopic starontopic starontopic starontopic starontopic starhalf ontopic starofftopic starofftopic star
Veteran
Beiträge: 6366
Erhaltene Danke: 60

Windows 7, Ubuntu
Delphi 7 Prof.
BeitragVerfasst: Mi 27.04.05 15:17 
Undafähr so:
ausblenden Quelltext
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
<table>
  <tr>
    <td>
      <table>
        <tr>
          <td>Text</td>
          <td>Text 2</td>
        </tr>
      </table>
    </td>
    <td>Text neben der inneren Tabelle</td>
  </tr>
</table>


Gruß
Klabautermann


Zuletzt bearbeitet von Klabautermann am Mi 27.04.05 15:24, insgesamt 2-mal bearbeitet
Tino
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starhalf ontopic star
Veteran
Beiträge: 9839
Erhaltene Danke: 45

Windows 8.1
Delphi XE4
BeitragVerfasst: Mi 27.04.05 15:17 
Hallo Lisa,

bitte ändere den Titel deines Topics um. Beachte dazu auch die Richtlinien:
Richtlinien:
1.2 Beiträge
Bitte formuliere den Betreff Deiner Beiträge so, dass andere Mitglieder anhand dieser bereits das eigentliche Thema festmachen können. Beiträge wie etwa "Eine Anfängerfrage" oder "Weiß jemand, wie das geht?" lassen den Leser im Unklaren darüber, was das Thema der Diskussion ist.

Klicke in deinem ersten Beitrag auf user defined image Button um den Titel zu ändern. Danke!

Gruß
Tino
Lisa Threadstarter
offtopic starofftopic starofftopic starofftopic starofftopic starofftopic starofftopic starofftopic star
Beiträge: 70



BeitragVerfasst: Mi 27.04.05 15:18 
Danke Danke Danke Danke Danke Danke Danke
:D
WeBsPaCe
ontopic starontopic starontopic starontopic starontopic starhalf ontopic starofftopic starofftopic star
Beiträge: 2322
Erhaltene Danke: 1

FireFox 3, Internet Explorer 6 SP1
D1, D3Prof, D6Pers, D7Pers+Indy, VisualStudio Express
BeitragVerfasst: Mi 27.04.05 15:18 
:lol: Nein... :D

Das kommt da hin, wo du dann auch deinen Zelleninhalt (z.B. Text) hinschreiben würdest:
ausblenden Quelltext
1:
2:
3:
4:
5:
6:
<table>
<tr>
<td>hallo</td>
<td>hallo</td>
</tr>
</table>

:arrow:
ausblenden Quelltext
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
<table>
<tr>
<td><table>
<tr>
<td>hallo</td>
<td>hallo</td>
</tr>
</table>
</td>
<td>hallo</td>
</tr>
</table>


;)


//EDIT: O GOTT!!! SCHON WIEDER.... Ich glaub, ich werd hier noch verrückt... :eyecrazy:


Zuletzt bearbeitet von WeBsPaCe am Mi 27.04.05 15:19, insgesamt 1-mal bearbeitet
ScorpionKing
ontopic starontopic starontopic starontopic starhalf ontopic starofftopic starofftopic starofftopic star
Beiträge: 1150

Win XP

BeitragVerfasst: Mi 27.04.05 15:19 
3 mal die gleiche antwort auf eine frage! so sollten meine fragen auch beantwortet werden! :wink:

_________________
Aus dem Urlaub zurück!
Klabautermann
ontopic starontopic starontopic starontopic starontopic starhalf ontopic starofftopic starofftopic star
Veteran
Beiträge: 6366
Erhaltene Danke: 60

Windows 7, Ubuntu
Delphi 7 Prof.
BeitragVerfasst: Mi 27.04.05 15:21 
user profile iconScorpionKing hat folgendes geschrieben:
3 mal die gleiche antwort auf eine frage! so sollten meine fragen auch beantwortet werden! :wink:

Nein, du hast die innere Tabelle nciht geschlossen ;).
Wenn deine Fragen auch so einfach zu beantworten sindkönnte dir das aber passieren.

Gruß
Klabautermann

PS: Und meine ist am schönsten eingerückt, so dass man die Systematik besser erkennen kann :P.
ScorpionKing
ontopic starontopic starontopic starontopic starhalf ontopic starofftopic starofftopic starofftopic star
Beiträge: 1150

Win XP

BeitragVerfasst: Mi 27.04.05 15:23 
user profile iconKlabautermann hat folgendes geschrieben:
user profile iconScorpionKing hat folgendes geschrieben:
3 mal die gleiche antwort auf eine frage! so sollten meine fragen auch beantwortet werden! :wink:

Nein, du hast die innere Tabelle nciht geschlossen ;).
Wenn deine Fragen auch so einfach zu beantworten sindkönnte dir das aber passieren.

Gruß
Klabautermann

PS: Und meine ist am schönsten eingerückt, so dass man die Systematik besser erkennen kann :P.


also ich seh in meinem code kein offenes tag!!

_________________
Aus dem Urlaub zurück!
Klabautermann
ontopic starontopic starontopic starontopic starontopic starhalf ontopic starofftopic starofftopic star
Veteran
Beiträge: 6366
Erhaltene Danke: 60

Windows 7, Ubuntu
Delphi 7 Prof.
BeitragVerfasst: Mi 27.04.05 15:26 
user profile iconScorpionKing hat folgendes geschrieben:
ausblenden Quelltext
1:
2:
3:
4:
5:
<table>
<tr>
<td><table><tr><td>Hallo</td></tr></td>
</tr>
</table>


Dass müsste so aussehen
ausblenden Quelltext
1:
2:
3:
4:
5:
<table>
<tr>
<td><table><tr><td>Hallo</td></tr></table></td>
</tr>
</table>


Gruß
Klabautermann
ScorpionKing
ontopic starontopic starontopic starontopic starhalf ontopic starofftopic starofftopic starofftopic star
Beiträge: 1150

Win XP

BeitragVerfasst: Mi 27.04.05 15:31 
okay, ich habe einen fehler gemacht, aber wozu gibt es die edit-funktion! :wink:

_________________
Aus dem Urlaub zurück!
Klabautermann
ontopic starontopic starontopic starontopic starontopic starhalf ontopic starofftopic starofftopic star
Veteran
Beiträge: 6366
Erhaltene Danke: 60

Windows 7, Ubuntu
Delphi 7 Prof.
BeitragVerfasst: Mi 27.04.05 16:19 
user profile iconScorpionKing hat folgendes geschrieben:
okay, ich habe einen fehler gemacht, aber wozu gibt es die edit-funktion! :wink:

Deshalb habe ich ja vorsichtshalber Zitiert ;).

Gruß
Klabautermann