Page 4 of 5

Re: Forum suggestions

Posted: Wed Aug 19, 2020 4:48 pm
by Andrew Lee
vevy wrote: Wed Aug 19, 2020 1:53 am A couple of quick requests if you may:
1. A way to center text in a line, like

2. A way to resize inline images, like [ img size=][ /img]
I have now added "center", "imgw", "imgh" and "imgwh" bbcodes.
vevy wrote: Wed Aug 19, 2020 1:53 am Also, the use cases box doesn't adapt to many entries (and doesn't show in preview).
Could you provide more details? Are you referring to the CLI test site or the main site? ''cos I don't think I ever backported any use case functionality back to the main site.

Re: Forum suggestions

Posted: Wed Aug 19, 2020 9:21 pm
by vevy
Andrew Lee wrote: Wed Aug 19, 2020 4:48 pm
vevy wrote: Wed Aug 19, 2020 1:53 am A couple of quick requests if you may:
1. A way to center text in a line, like

2. A way to resize inline images, like [ img size=][ /img]
I have now added "center", "imgw", "imgh" and "imgwh" bbcodes.
Thank!
vevy wrote: Wed Aug 19, 2020 1:53 am Also, the use cases box doesn't adapt to many entries (and doesn't show in preview).
Could you provide more details? Are you referring to the CLI test site or the main site? ''cos I don't think I ever backported any use case functionality back to the main site.
CLI. See here (and try the preview): https://cli.portablefreeware.com/edit.php?id=13

Re: Forum suggestions

Posted: Thu Aug 20, 2020 4:28 pm
by Andrew Lee
vevy wrote: Wed Aug 19, 2020 1:53 am CLI. See here (and try the preview): https://cli.portablefreeware.com/edit.php?id=13
Fixed!

Re: Forum suggestions

Posted: Thu Aug 20, 2020 8:41 pm
by vevy
Andrew Lee wrote: Thu Aug 20, 2020 4:28 pm
vevy wrote: Wed Aug 19, 2020 1:53 am CLI. See here (and try the preview): https://cli.portablefreeware.com/edit.php?id=13
Fixed!
Th preview is fixed (thanks) , but the edit isn't yet. The tags flow outside the edit field.

Re: Forum suggestions

Posted: Fri Aug 21, 2020 8:55 pm
by Andrew Lee
Looks like this is going to take a little more time and effort to fix..

I will keep you posted.

Update: Fixed.

Re: Forum suggestions

Posted: Mon Sep 07, 2020 6:26 pm
by vevy
Hi Andrew, Working with the php table tags is a pain, especially with large tables like the Index.

Is there a better/simpler way to do it? I would suggest HTML code embedding, but it eats a lot of characters (like php) for tags, and I hit the 60k mark with relatively little data.

If it is not easy to do in the forum, can there be a special page in the site for the tool index that a user like me can edit?

Thanks

Re: Forum suggestions

Posted: Mon Sep 07, 2020 8:24 pm
by Andrew Lee
vevy wrote: Mon Sep 07, 2020 6:26 pm Hi Andrew, Working with the php table tags is a pain, especially with large tables like the Index.

Is there a better/simpler way to do it? I would suggest HTML code embedding, but it eats a lot of characters (like php) for tags, and I hit the 60k mark with relatively little data.

If it is not easy to do in the forum, can there be a special page in the site for the tool index that a user like me can edit?

Thanks
I don't quite understand what you are referring to.

Are you trying to add a large table to a forum post, or a large table to a database entry?

Do you have an example of what kind of table you are trying to add?

Re: Forum suggestions

Posted: Tue Sep 08, 2020 2:25 pm
by vevy
The forum (or the site but separate from the entries) .

Something like this.

Ideally it would be sortable, filterable etc, but a static table should do for now.

Re: Forum suggestions

Posted: Wed Sep 09, 2020 5:09 pm
by Andrew Lee
Try a tool like this:

BBCode Table Generator

Re: Forum suggestions

Posted: Wed Sep 09, 2020 5:16 pm
by vevy
Thanks. I do have a tool on my desktop for the conversion. The constant editing and updating is the more cumbersome part.

Re: Forum suggestions

Posted: Sun Sep 13, 2020 5:35 pm
by vevy
I wish there was a way to set column size in forum tables.

Re: Forum suggestions

Posted: Wed Sep 16, 2020 3:32 am
by Andrew Lee
vevy wrote: Sun Sep 13, 2020 5:35 pm I wish there was a way to set column size in forum tables.
Maybe define a new tag eg. [tdw=xx] that specifies the <td> width in percentage? The other size unit for width is pixel value, which I don't is appropriate to use.

Re: Forum suggestions

Posted: Wed Sep 16, 2020 11:16 am
by vevy
Andrew Lee wrote: Wed Sep 16, 2020 3:32 am The other size unit for width is pixel value, which I don't is appropriate to use.
I think it would cause a problem with mobile phones, so maybe yeah, % is better.

Whatever you see fit, I think it needs two things:

1. A way to apply t to the whole column.
2. % of regular post width, not screen (or else it would be too wide).

Re: Forum suggestions

Posted: Wed Sep 16, 2020 10:08 pm
by Andrew Lee

Code: Select all

[table]
[tr]
[tdw=70]70% of table[/tdw]
[td]Regular[/td]
[/tr]
[tr]
[tdw=70]Row 2, Column 1[/tdw]
[td]Row 2, Column 2[/td]
[/tr]
[/table]
yields:
70% of table Regular
Row 2, Column 1 Row 2, Column 2

Re: Forum suggestions

Posted: Wed Sep 16, 2020 10:13 pm
by vevy
Doesn't work if table has headers (th) 😕


Since it is gonna apply to the whole column, why not [thw]?