[BBCode] Table

Modifications for phpBB3.
Try the Mods here and share Your own Mods
Forum rules
You dont have to use ModX or make your mod AutoMod compatible. A simple textfile is fine
But if you post Mods here You also have to give support

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

[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

[BBCode] Table

Post by Chico Gois »

It has a screen?

[BBCode] Table

Post by Upside555 »

Thanks , guud bbcode

[BBCode] Table

Post by acidrain83 »

i know that here is a creen but on my forum it is not center..

[BBCode] Table

Post by webmaster »

Nice share dude..!!

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

[BBCode] Table

Post by KreatorTeam »

Hi, anyone know how to do it this , the link clickable http://i.imgur.com/41EHL.png ?
Thanks !

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

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