h3.
h3.

Reputation: 11068

Editable HTML tables

Lots of WYSIWYG editor implements HTML table functionalities, however I noticed that such functionalities were not spread evenly accross browsers..

And by editable table, I mean the ability to add/remove rows and columns and resize the table with controls like these:text editor with controls

However if I edit a table in another WYSIWYG editor I get this:

editor with some controls

Now one would think this is specific to the editor implementation, but take the first one and run it in Google Chrome and you can't edit the table at all.

So .. are they browser native controls or editor specific controls ? And how can I enable/disable it ?

I tried to inspect the arrows in Firebug without much luck ..

Upvotes: 0

Views: 697

Answers (2)

Pekka
Pekka

Reputation: 449803

They are browser native, extended by some WYSIWYG editors by nice dialogs and functions. Check out CKEDitor's demo for example, create a table and right click in it.

On a personal experience note, I think editing tables in a WYSIWYG editor is worse than the plague. It's unstable and jittery. It's a torture for most end-users. Whenever I've had the need to edit tables in a CMS setting, I've always gone for a custom form defining columns and rows.

Upvotes: 2

Joshua
Joshua

Reputation: 651

I would say there are several things going on. Browser controls, and editor controls.

Can you outline which specific editors you're trying?

Also - I've not found many RTE's that have great table management features.

Upvotes: 1

Related Questions