You are not logged in.
Pages: 1
Hi,
Love Xinha... have just reverted nearly 10 sites to use it. One questions I have that my users have brought up is, how can you move a table once it's been rendered in the textarea? Sometimes they're able to move the table around after clicking on it, but most of the time the row/column nubs come up and it's impossible to move the table.
Thanks
Offline
What I usually do is in the CSS that the WYSIWYG uses I hardcode something like this :
table {
border: 2px dotted #F00 !important;
}
This way there will always be a visible border for the user to accually connect with so to speak, you could also add the following for the cells :
table td {
border: 2px dotted #0F0 !important;
margin: 1px !important;
}
Sure it will mess up the layout of the page, but only in WYSIWYG. After all, WYSIWYG editors in Javascript arnt supposed to be a fancy table editing environment - atleast I coach our customers like this. Maby this could be of help for you.
Mvh,
Kim Steinhaug
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Easy CMS - Et brukervennlig publiseringssystem - Easy Webshop - Nettbutikk med krefter
Last edited by kimss (2006-02-27 19:21:10)
Offline
Pages: 1