[BBCode] Table

Mods, snippets and styles postet and supported by the users
Forum rules
As the forum title says this is for User Contributions
Post a support request in this forum and you will be banned!
Chico Gois
BBCoder II
BBCoder II
Posts: 10
Joined: 08 Mar 2010, 17:00
Contact:

[BBCode] Table

Post by Chico Gois »

Description: Lets you add custom table.

Features:
- How many lines you want.
- How many columns you want

BBCode:

Code: Select all

[tabela]{TEXT}[/tabela]
HTML replacement:

Code: Select all

<script language="Javascript">
var texto = '{TEXT}';
texto = texto.replace("\r\n","");
texto = texto.replace("<br>","");
texto = texto.replace(" ","");
var linha = new Array();
linha = texto.split('L=');
var table = '<div align="center"><TABLE width=70% cellpadding=1 cellspacing=1 border=0>';
for (var i=1; i<linha.length; i++)
{
  table = table + '<TR>';
  var coluna = new Array();
  coluna = linha[i].split('&');
  for (var j=0; j<coluna.length; j++)
  {
    if (i == 1)
    {
      table = table + '<TD align=center style="background: #FF8904; font-size:11px; color:black; font-family:  Verdana,Arial, Helvetica, sans-serif;"><b>' + coluna[j].replace("amp;","") + '</b></TD>';      
    }
    else
    {
      table = table + '<TD style="background: #878282; font-size:11px; color:white; font-family:  Verdana,Arial, Helvetica, sans-serif;">' + coluna[j].replace("amp;","") + '</TD>';      
    }

  }
  table = table + '<TR>';
}
table = table + '</TABLE></div>';
document.write(table);
</script>
Use:

Code: Select all

Separate the L rows and columns with = &

[tabela]
L=Nome&Nick&Sexo
L=Tiago&Sapporo&Masculino
L=Laura&Witch&Feminino
L=Cesar&Rasec&Masculino
[/tabela]

Obs.:
- The style can be changed completely.
- The first style is referred to the header and the second table with all the other lines.

Screen:
bb.JPG
Demo:
http://www.mundophpbb.com.br/forum/view ... p?f=11&t=8
acidrain83
BBCoder II
BBCoder II
Posts: 6
Joined: 07 May 2012, 03:07
BBCodes: 2

[BBCode] Table

Post by acidrain83 »

thx for this table
but i have a little problem
the text is not center.....what can i do???
please help...i have add the bbcode and the html code like here...
only the colors edited
Chico Gois
BBCoder II
BBCoder II
Posts: 10
Joined: 08 Mar 2010, 17:00
Contact:

[BBCode] Table

Post by Chico Gois »

It has a screen?
Upside555
BBCoder II
BBCoder II
Posts: 25
Joined: 11 Apr 2012, 20:36
BBCodes: 0
Contact:

[BBCode] Table

Post by Upside555 »

Thanks , guud bbcode
acidrain83
BBCoder II
BBCoder II
Posts: 6
Joined: 07 May 2012, 03:07
BBCodes: 2

[BBCode] Table

Post by acidrain83 »

i know that here is a creen but on my forum it is not center..
webmaster
BBCoder II
BBCoder II
Posts: 69
Joined: 19 Nov 2011, 23:52
BBCodes: 5
Favourite BBCode: Rainbow
Favourite MOD: Please wait
Location: Bangladesh
Contact:

[BBCode] Table

Post by webmaster »

Nice share dude..!!
aydin1954
BBCoder I
BBCoder I
Posts: 1
Joined: 28 Jun 2012, 17:04
BBCodes: 3

[BBCode] Table

Post by aydin1954 »

Hello & nice contribution, simple and efficient.

I was wondering if you could make the style configurable. Have a default if no variables are entered but let the different component of the style be configurable by the user.

Thanks for considering. :thumb:
User avatar
KreatorTeam
BBCoder II
BBCoder II
Posts: 8
Joined: 18 Apr 2010, 20:01
Location: Torino
Contact:

[BBCode] Table

Post by KreatorTeam »

Hi, anyone know how to do it this , the link clickable http://i.imgur.com/41EHL.png ?
Thanks !
Rigo
BBCoder I
BBCoder I
Posts: 2
Joined: 31 Oct 2013, 15:59
BBCodes: 8

[BBCode] Table

Post by Rigo »

I know this thread is old but the code is awesome. I put it on my boards and it shows on the previews I do while working on it. However, when I submit the post, it does not show (it's blank) Why is that?
Attachments
Tables preview.jpg
Potku
BBCoder II
BBCoder II
Posts: 21
Joined: 07 Jun 2010, 16:04

[BBCode] Table

Post by Potku »

We have the same problem: preview shows it nicely, but the table disappears once the post has been sent. That's really weird.

This would be so, so much easier than the table BBCode we have had for years. I wish someone could help Rigo and me.
Locked