Announcement

Do not use the forums to submit bug reports, feature requests or patches, submit a New Ticket instead.

#526 Re: User Discussion & Help » context menu size » 2006-02-06 04:16:38

Is the HTML page you are including Xinha on in Standards or Quirks mode?

#527 Re: User Discussion & Help » POST textarea vars not populated » 2006-02-06 04:15:35

A common issue I've found is incorrect nesting of the form element, specifically people often nest it between <tr> tags or similar invalid locations.  This will cause problems for you.

i.e <table><form><tr> is invalid and very bad, <form><table><tr> is OK.

#528 Re: User Discussion & Help » Safari compatibility » 2006-02-06 04:13:08

Xinha doesn't work in Safari at all, to my knowledge smile  No Mac around here, so no Safari testing.

#529 Re: User Discussion & Help » HELP! running on php file get » 2006-01-18 08:57:07

You are outputting stuff before the session headers are output.  Have a PHP developer install it for you if you don't understand PHP.

#530 Re: User Discussion & Help » <em> and <i> tags for italics » 2006-01-18 08:54:35

Because the browsers implement it differently internally.  Firefox specifically uses the old presentational tags (I/B), while IE does the right thing and uses proper semantic markup (em/strong).

#532 Re: User Discussion & Help » Split Block ? » 2006-01-17 09:30:25

I have a feeling it does nothing useful and should be removed.  I think it was something I started working on, long ago (when it was still HTMLArea) and never finished.

#533 Re: User Discussion & Help » problem: Toolbar shifted ... » 2006-01-13 22:00:34

It may be, although I'm sure i've adjusted it once already.

#534 Re: User Discussion & Help » problem: Toolbar shifted ... » 2006-01-12 22:43:24

You need to adjust the height value in the CSS file, at least that's the easiest way.  open up skin.css for the appropriate skin you are using and find the height value for .htmlarea .toolbarRow, increase it a bit.

Depending on your browser you may need to load the CSS file directly in the browser to force it to flush through the cache, CSS files have a tendancy to get stuck sometimes.

#535 Re: User Discussion & Help » Javascript Error?? » 2006-01-04 08:13:34

Please provide a URL where we can see the problem and try it out.

#536 Re: User Discussion & Help » Offset of the actual editor area » 2006-01-04 08:12:47

offsetTop/Left is the offset from the parent element isn't it?  I think you should add up all the offsetTop's/Lefts back to the root element and that would give what you want.

#537 Re: User Discussion & Help » Clean up / Deploy script » 2006-01-04 08:10:41

Sure it's called "keeping your own working copy of the SVN setup just how you like it and then doing an svn update to bring in just the changes to what you want to keep and then doing an svn export of the working copy so that you can put a clean version without the svn stuff into your production systems". 

Kinda a long name.

#539 Re: User Discussion & Help » Z-index IE... » 2006-01-04 08:07:49

It used to be, perhaps still is for IE, that selects ("dropdowns") cannot be covered by layers, they always show through.  If it works in Firefox, and not IE, blame IE for not fixing that very old problem.  Check in the latest IE you can get hold of.

#540 Re: User Discussion & Help » Relative Link Problem » 2006-01-04 08:06:11

You'll have to play around with those settings, not sure what will work if anything.  It's the browsers that stuff it up originally, Xinha tries to fix thier mistakes where we can.

#541 Re: User Discussion & Help » Insert text into the editor » 2005-12-26 00:12:00

Modify your plugin to accept the available variables in the configuration of the editor.

#542 Re: User Discussion & Help » I have problem with load text into xinha... » 2005-12-21 20:32:53

Post a URL to your attempt, we can't help with so little information.

#543 Re: User Discussion & Help » data disappears with xinha » 2005-12-21 20:31:33

Common causes...

  1. You are submitting the form directly using form.submit() (or similar), which will not call the onsubmit() function of the form, which means that Xinha never gets told to save the HTML into the textarea.  If you are not submitting with a submit button, then make sure you call form.onsubmit() first.
  2. You have incorrectly nested the form tags inside tables, or table rows... eg <table><form...>.....</form></table> or <table><tr><form...> ... </form></tr></table>.  This is invalid HTML, and sometimes browsers will not throw events (or something, whatever Xinha fails on it), you should use valid HTML, specifically form tags may not be children of table, or tr.

#545 Re: User Discussion & Help » Fullscreen editor issue. » 2005-12-21 20:24:02

BTW: I don't think the popup editor is available any more, it was so buggy it wasn't worth keeping around.  You could develop a plugin to do that.

#546 Re: User Discussion & Help » Fullscreen editor issue. » 2005-12-21 20:22:45

You should be able to dynamically modify the code without touching the Xinha files.

#547 Re: User Discussion & Help » Fullscreen editor issue. » 2005-12-19 00:09:52

Is it possible to hide (display:none) the map?  If so, then you could modify the FullScreen button to hide/show the map, that'd be the easy solution.

#548 Re: User Discussion & Help » ready for production use? » 2005-12-18 09:13:29

As the others have said, Xinha is, IMHO, far and away better than HTMLArea was, HTMLArea was flakey as anything, Xinha isn't.  I use the trunk at various revisions in my own production systems.

Version 1.0 is something I'd like to see happen before April.  After that we can start structural changes to improve speed, lower memory use, Safari and Opera support.

#549 Re: User Discussion & Help » Costum key events » 2005-12-18 09:06:26

Plugin objects may contain a method onKeyPress which receives a standard event object.  You should also be able to define an onKeyPress for the textarea in the usual manner for HTML.

#550 Re: User Discussion & Help » Enable/Disable Xinha TextArea » 2005-12-18 09:02:30

Search the forums, this has been asked and answered recently

Board footer

Powered by FluxBB