[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!
No Avatar
Chico Gois Offline
BBCoder II
BBCoder II
Posts: 10
Joined: 08 Mar 2010, 15:00
Last active: -

[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
You do not have the required permissions to view the files attached to this post.
No Avatar
acidrain83 Offline
BBCoder II
BBCoder II
Posts: 6
Joined: 07 May 2012, 01:07
Last active: -

[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
No Avatar
Chico Gois Offline
BBCoder II
BBCoder II
Posts: 10
Joined: 08 Mar 2010, 15:00
Last active: -

[BBCode] Table

Post by Chico Gois »

It has a screen?
No Avatar
Upside555 Offline
BBCoder II
BBCoder II
Posts: 25
Joined: 11 Apr 2012, 18:36
Last active: -

[BBCode] Table

Post by Upside555 »

Thanks , guud bbcode
No Avatar
acidrain83 Offline
BBCoder II
BBCoder II
Posts: 6
Joined: 07 May 2012, 01:07
Last active: -

[BBCode] Table

Post by acidrain83 »

i know that here is a creen but on my forum it is not center..
No Avatar
webmaster Offline
BBCoder II
BBCoder II
Posts: 69
Joined: 19 Nov 2011, 21:52
Last active: -
Favourite BBCode: Rainbow
Favourite EXT: Please wait
Location: Bangladesh

[BBCode] Table

Post by webmaster »

Nice share dude..!!
User avatar
aydin1954 Offline
BBCoder I
BBCoder I
Posts: 1
Joined: 28 Jun 2012, 15:04
Last active: -

[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 Offline
BBCoder II
BBCoder II
Posts: 8
Joined: 18 Apr 2010, 18:01
Last active: -
Location: Torino

[BBCode] Table

Post by KreatorTeam »

Hi, anyone know how to do it this , the link clickable http://i.imgur.com/41EHL.png ?
Thanks !
User avatar
Rigo Offline
BBCoder I
BBCoder I
Posts: 2
Joined: 31 Oct 2013, 13:59
Last active: -

[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?
You do not have the required permissions to view the files attached to this post.
No Avatar
Potku Offline
BBCoder II
BBCoder II
Posts: 25
Joined: 07 Jun 2010, 14:04
Last active: -

[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.