You are not logged in.
Quick newbie query
Is it possible to hide the Path > p> etc... part of the xinha object?
Thanks
Toby
Offline
config.statusBar = false;
there is tons of way to init xinha and tweak one or more editors, but a very basic sample to make it works could be
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title></title>
<script type="text/javascript">
_editor_url = '/js/xinha/';
_editor_lang = "en";
</script>
<script type="text/javascript" src="/js/xinha/htmlarea.js"></script>
<script type="text/javascript">
function init() {
var config = new HTMLArea.Config();
config.statusBar = false;
var xed = HTMLArea.makeEditors(['mytextarea'], config);
HTMLArea.startEditors(xed);
}
</script>
</head>
<body onload="init();">
<form>
<textarea id="mytextarea" name="mytextarea" rows="10" cols="80" style="width:100%"></textarea>
</form>
</body>
</html>
Is there any kind of FAQ around ? cant find anything else than the tracFaq which in this case is not really what is wanted
Offline
there is a newbie-guide:
http://xinha.python-hosting.com/wiki/NewbieGuide
Niko
Offline
Yeah i already checked the NewbieGuide, but a FAQ is a totally different thing.
For now the forum is not crowded with always the same questions, but it will happens soon or later.
this question : How to hide status bar ? is the perfect example for a FAQ. It's not answered nor by the NewbieGuide neither by the newbie thread.
Offline
Right mokhet,
gogo please think of creating soon a FAQ part on this forum or we will die under such normal but boring questions...
Offline
I think you just volunteered to lead the FAQ effort guillaumed...
http://xinha.python-hosting.com/wiki/Fr … dQuestions
when you have something useful there let me know and I'll put a sticky on the forum for it. Don't forget to link it from the wiki homepage.
James Sleeman
Offline
Okay man but you will noticed than english is not my mother language.
Is there any volonteer to reread (and rewrite..) the FAQ
Offline
something for the faq:
q: Is there a list of all the functions xinha uses?
a: http://xinha.gogo.co.nz/punbb/viewtopic.php?id=137
Offline
Works perfectly
Thank you
Toby
Offline
Okay man but you will noticed than english is not my mother language.
Is there any volonteer to reread (and rewrite..) the FAQ
English is not my mother language neither, but i'm up to translate it in french and reread by the same way
Offline
Super..
Just add this translation at the and of the FAQ page and make a link at the head for that... Any other volonteer for other foreign languages..??
Offline
Just add this translation at the and of the FAQ page and make a link at the head for that...
Hurm, dont laugh at me but I have no clue of what you just said.
my first little french translation of FAQ is available at http://mokhet.com/xinha_faq.html
guillamed, feel free to send me a mail at mokhet@mokhet.com if needed.
Offline