table function
Viewing forum thread.
Back to Game Queries.
Back to Forum List.
Pages: 1
2
Deleted User
(IP Logged)
(IP Logged)
10:22 Wed 27 Jan 10 (GMT) [Link]
the original idea about a table would be pretty useful though.
and going back to what nick said about tables being confusing to use. surely anybody running a league successfully would have sufficient brain power to figure out how to use a table.
if you were using microsoft office, it would make more sense to use excel instead of word. that way you can create formulae that will change the points on inputting the frames won and lost.
or having the frames won and lost and points calculated by entering the scores opposite people names like i used to do. that was not for the inexperienced user though.
anyway, a simple table with custumisable amounts of rows and columns would be sufficient for on here
and going back to what nick said about tables being confusing to use. surely anybody running a league successfully would have sufficient brain power to figure out how to use a table.
if you were using microsoft office, it would make more sense to use excel instead of word. that way you can create formulae that will change the points on inputting the frames won and lost.
or having the frames won and lost and points calculated by entering the scores opposite people names like i used to do. that was not for the inexperienced user though.
anyway, a simple table with custumisable amounts of rows and columns would be sufficient for on here
12:51 Wed 27 Jan 10 (GMT) [Link]
You misunderstood me - it's complex to add and use tables within forums as there isn't the ability to natively create a table in the same manner as Word.
Now this leaves us with a couple of options:
1) Use similar structure to HTML, eg
<table>
<tr><td>HEADING</td><td>HEADING 2</td></tr>
<tr><td>1</td><td>2</td></tr>
</table>
This would also have to be tested for validity on the server side, any incorrectly specified tables could break of the whole web-page.
2) Add a Word like JavaScript helper to create them.
This would require quite an overhaul to how the posts currently work.
Both of these are a lot of work just to add tables, when pretty much the same effect could be achieved using a simple preformat tag.
Now this leaves us with a couple of options:
1) Use similar structure to HTML, eg
<table>
<tr><td>HEADING</td><td>HEADING 2</td></tr>
<tr><td>1</td><td>2</td></tr>
</table>
This would also have to be tested for validity on the server side, any incorrectly specified tables could break of the whole web-page.
2) Add a Word like JavaScript helper to create them.
This would require quite an overhaul to how the posts currently work.
Both of these are a lot of work just to add tables, when pretty much the same effect could be achieved using a simple preformat tag.
Deleted User
(IP Logged)
(IP Logged)
13:21 Wed 27 Jan 10 (GMT) [Link]
i dont understand that last part about the tag but do that
pasting in a screenshot seems like the simplest option since the others are difficult to implement
pasting in a screenshot seems like the simplest option since the others are difficult to implement
Deleted User
(IP Logged)
(IP Logged)
14:13 Wed 27 Jan 10 (GMT) [Link] I got to agree with you there!
Can someone please explain what this is and how to use it? lol
sacred_heart said:
i dont understand that last part about the tag but do that
pasting in a screenshot seems like the simplest option since the others are difficult to implement
pasting in a screenshot seems like the simplest option since the others are difficult to implement
nick said:
You misunderstood me - it's complex to add and use tables within forums as there isn't the ability to natively create a table in the same manner as Word.
Now this leaves us with a couple of options:
1) Use similar structure to HTML, eg
<table>
<tr><td>HEADING</td><td>HEADING 2</td></tr>
<tr><td>1</td><td>2</td></tr>
</table>
This would also have to be tested for validity on the server side, any incorrectly specified tables could break of the whole web-page.
2) Add a Word like JavaScript helper to create them.
This would require quite an overhaul to how the posts currently work.
Both of these are a lot of work just to add tables, when pretty much the same effect could be achieved using a simple preformat tag.
Now this leaves us with a couple of options:
1) Use similar structure to HTML, eg
<table>
<tr><td>HEADING</td><td>HEADING 2</td></tr>
<tr><td>1</td><td>2</td></tr>
</table>
This would also have to be tested for validity on the server side, any incorrectly specified tables could break of the whole web-page.
2) Add a Word like JavaScript helper to create them.
This would require quite an overhaul to how the posts currently work.
Both of these are a lot of work just to add tables, when pretty much the same effect could be achieved using a simple preformat tag.
Can someone please explain what this is and how to use it? lol
Deleted User
(IP Logged)
(IP Logged)
02:54 Thu 28 Jan 10 (GMT) [Link]
<pre> just allows you to use spaces instead of dots, it's not rocket science lol.
Deleted User
(IP Logged)
(IP Logged)
04:11 Thu 28 Jan 10 (GMT) [Link]
There is a few llike:
<TABLE ...>
<TR ...> Table Row
<TD ...> Table Data
<TH ...> Table Header
<COL ...> Column
<COLGROUP ...> Column Group
<CAPTION ...>
<THEAD ...> Table Header Section
<TBODY ...> Table Body Section
<TFOOT ...> Table Footer Section
I can easily add a working table for you and send you the code?
Basically..
<TABLE BORDER=2>
<TR> <TD>xD</TD> <TD>1</TD> </TR>
<TR> <TD>errrr</TD> <TD>2</TD> </TR>
<TR> <TD>pwn</TD> <TD>3</TD> </TR>
<TR> <TD>lol</TD> <TD>4</TD> </TR>
</TABLE>
Simple xD
Edited at 10:17 Thu 28/01/10 (GMT)
Edited at 10:18 Thu 28/01/10 (GMT)
Edited at 10:19 Thu 28/01/10 (GMT)
nick said:
You misunderstood me - it's complex to add and use tables within forums as there isn't the ability to natively create a table in the same manner as Word.
Now this leaves us with a couple of options:
1) Use similar structure to HTML, eg
<table>
<tr><td>HEADING</td><td>HEADING 2</td></tr>
<tr><td>1</td><td>2</td></tr>
</table>
This would also have to be tested for validity on the server side, any incorrectly specified tables could break of the whole web-page.
2) Add a Word like JavaScript helper to create them.
This would require quite an overhaul to how the posts currently work.
Both of these are a lot of work just to add tables, when pretty much the same effect could be achieved using a simple preformat tag.
Now this leaves us with a couple of options:
1) Use similar structure to HTML, eg
<table>
<tr><td>HEADING</td><td>HEADING 2</td></tr>
<tr><td>1</td><td>2</td></tr>
</table>
This would also have to be tested for validity on the server side, any incorrectly specified tables could break of the whole web-page.
2) Add a Word like JavaScript helper to create them.
This would require quite an overhaul to how the posts currently work.
Both of these are a lot of work just to add tables, when pretty much the same effect could be achieved using a simple preformat tag.
There is a few llike:
<TABLE ...>
<TR ...> Table Row
<TD ...> Table Data
<TH ...> Table Header
<COL ...> Column
<COLGROUP ...> Column Group
<CAPTION ...>
<THEAD ...> Table Header Section
<TBODY ...> Table Body Section
<TFOOT ...> Table Footer Section
I can easily add a working table for you and send you the code?
Basically..
<TABLE BORDER=2>
<TR> <TD>xD</TD> <TD>1</TD> </TR>
<TR> <TD>errrr</TD> <TD>2</TD> </TR>
<TR> <TD>pwn</TD> <TD>3</TD> </TR>
<TR> <TD>lol</TD> <TD>4</TD> </TR>
</TABLE>
Simple xD
Edited at 10:17 Thu 28/01/10 (GMT)
Edited at 10:18 Thu 28/01/10 (GMT)
Edited at 10:19 Thu 28/01/10 (GMT)
Deleted User
(IP Logged)
(IP Logged)
06:35 Thu 28 Jan 10 (GMT) [Link]
Yeah he's not saying it can't be done he's saying it's risky to implement as any fault could completely break the web page.
Deleted User
(IP Logged)
(IP Logged)
09:48 Thu 28 Jan 10 (GMT) [Link]
This is basic html. So "Basically" (how ironic ) you just need to enable basic html in forums and it will do it for you without messing up the forums. Simples.
11:08 Fri 29 Jan 10 (GMT) [Link]
No chance, I'm afraid. It would be a serious security problem if anyone can edit unfiltered HTML, not to mention that most people cannot write standard and cross-browser compliant code.
Writing filters to check the input is possible of course, but this comes back to the fact it is a lot of work just to add a table.
ub3rnator said:
So "Basically" you just need to enable basic html in forums and it will do it for you without messing up the forums. Simples.
No chance, I'm afraid. It would be a serious security problem if anyone can edit unfiltered HTML, not to mention that most people cannot write standard and cross-browser compliant code.
Writing filters to check the input is possible of course, but this comes back to the fact it is a lot of work just to add a table.
Deleted User
(IP Logged)
(IP Logged)
11:19 Fri 29 Jan 10 (GMT) [Link]
Well why dont you just make it so it only allows the
<TABLE ...>
<TR ...> Table Row
<TD ...> Table Data
<TH ...> Table Header
<COL ...> Column
<COLGROUP ...> Column Group
<CAPTION ...>
<THEAD ...> Table Header Section
<TBODY ...> Table Body Section
<TFOOT ...> Table Footer Section
and it blocks everything else?
<TABLE ...>
<TR ...> Table Row
<TD ...> Table Data
<TH ...> Table Header
<COL ...> Column
<COLGROUP ...> Column Group
<CAPTION ...>
<THEAD ...> Table Header Section
<TBODY ...> Table Body Section
<TFOOT ...> Table Footer Section
and it blocks everything else?
12:19 Fri 29 Jan 10 (GMT) [Link]
It would more than double the complexity of the forum filter just to add an unintuitive table structure that hardly anyone would use.
Deleted User
(IP Logged)
(IP Logged)
12:44 Fri 29 Jan 10 (GMT) [Link]
Is there no website where you can put all the info into the table and past it into a post? Or is that ambitious? lol
Deleted User
(IP Logged)
(IP Logged)
20:02 Fri 29 Jan 10 (GMT) [Link]
never mind....
Edited at 02:15 Sat 30/01/10 (GMT)
Edited at 02:15 Sat 30/01/10 (GMT)
04:33 Sat 30 Jan 10 (GMT) [Link]
do u mean similar to putting an image into a post, theres got to be a site where u can extract a table from. I f there isnt then maybe one of us should make a site that can lol
errrrm
or maybe
To be fair tho as alot of people have now done, i see no harm in creating league tables on microsoft excel etc then saving to photobucket / tinypic etc and copying the url to the forum, i suppose its just a little bit time consuming thats all.
Edited at 10:43 Sat 30/01/10 (GMT)
nuts_uk said:
Is there no website where you can put all the info into the table and past it into a post? Or is that ambitious? lol
do u mean similar to putting an image into a post, theres got to be a site where u can extract a table from. I f there isnt then maybe one of us should make a site that can lol
errrrm
or maybe
To be fair tho as alot of people have now done, i see no harm in creating league tables on microsoft excel etc then saving to photobucket / tinypic etc and copying the url to the forum, i suppose its just a little bit time consuming thats all.
Edited at 10:43 Sat 30/01/10 (GMT)
Deleted User
(IP Logged)
(IP Logged)
05:33 Sat 30 Jan 10 (GMT) [Link]
do u mean similar to putting an image into a post, theres got to be a site where u can extract a table from. I f there isnt then maybe one of us should make a site that can lol
errrrm
o maybe
Sorry, but you've come in here asking me to invest in your business wearing a t-shirt and jeans? I think your evaluation of your company is way off and in fact it's not a company and for that reason...
I'm out
i_am_god said:
nuts_uk said:
Is there no website where you can put all the info into the table and past it into a post? Or is that ambitious? lol
do u mean similar to putting an image into a post, theres got to be a site where u can extract a table from. I f there isnt then maybe one of us should make a site that can lol
errrrm
o maybe
Sorry, but you've come in here asking me to invest in your business wearing a t-shirt and jeans? I think your evaluation of your company is way off and in fact it's not a company and for that reason...
I'm out
Deleted User
(IP Logged)
(IP Logged)
14:30 Sun 31 Jan 10 (GMT) [Link]
do u mean similar to putting an image into a post, theres got to be a site where u can extract a table from. I f there isnt then maybe one of us should make a site that can lol
errrrm
o maybe
Sorry, but you've come in here asking me to invest in your business wearing a t-shirt and jeans? I think your evaluation of your company is way off and in fact it's not a company and for that reason...
I'm out
pic didn't work mate !
and i think its best just to create a table on excel and print screening it into paint and onto tinypic or photobucket etc...
but it would be goodif you could be able to get a table formatter on here, would make things a whole lot easier
nuts_uk said:
i_am_god said:
nuts_uk said:
Is there no website where you can put all the info into the table and past it into a post? Or is that ambitious? lol
do u mean similar to putting an image into a post, theres got to be a site where u can extract a table from. I f there isnt then maybe one of us should make a site that can lol
errrrm
o maybe
Sorry, but you've come in here asking me to invest in your business wearing a t-shirt and jeans? I think your evaluation of your company is way off and in fact it's not a company and for that reason...
I'm out
pic didn't work mate !
and i think its best just to create a table on excel and print screening it into paint and onto tinypic or photobucket etc...
but it would be goodif you could be able to get a table formatter on here, would make things a whole lot easier
Deleted User
(IP Logged)
(IP Logged)
14:32 Sun 31 Jan 10 (GMT) [Link]
ok now it works !
1st time i opened spoiler it didnt work lol it was just "x Posted image" lol
1st time i opened spoiler it didnt work lol it was just "x Posted image" lol
Pages: 1
2
Unable to post | |
---|---|
Reason: | You must log in before you can post |
table function
Back to Top of this Page
Back to Game Queries.
Back to Forum List.