Snitz™ Forums 2000
https://forum.snitz.com/forumTopic/Posts/64540?pagenum=1
05 November 2025, 07:27
Topic
kolucoms6
Rich text Box
16 April 2007, 12:48
I am looking for a Rich Text Box , kind of one used in forum or may be somethinglike that.
I got one from http://www.kevinroth.com/rte/demo.htm but cant pass data from one page to another.
Any help will be highly appreciated.<
Replies ...
AnonJr
16 April 2007, 13:52
Have a search, a few people have tried to set up RTEs in Snitz in the past. I don't know if any were ever finished though.
Just out of curiosity, what do you mean by "cant pass data from one page to another"?<
kolucoms6
16 April 2007, 14:05
When I press " Submit", I cant get the data in next page.May be some error from my side.<
AnonJr
16 April 2007, 14:28
Is the form value empty? What about the other form values?<
MaD2ko0l
16 April 2007, 14:35
WebWizGuide has a RTE app that you could probly use, i think they also have this set up on there forums as well.
maybe that will be a good place to start<
kolucoms6
16 April 2007, 16:33
:-)
Thanks a lot all.
I am using a RTE .. working sample demo you will find at
http://www.getfunds.info/cattes/add.asp
Now, when I submit, value in RTE(Name is 'Message') , always passes as "Put your display content here" or whatever is default to the next page.It does pass the modified or edited text.
Any Suggestion ?
Let me know if you want to have a look at the script.
I will post txt file.<
AnonJr
16 April 2007, 16:53
I'd check your code changes - I suspect that there is some missing JavaScript or something. This really is a question for the support at wherever you got the RTE from (if they provide support) since it seems to be an issue with the RTE itself...
Or you can try to get a hold of Nathan, and get what he was working on since (to the best of my knowledge) it was working fine with Snitz.<
<!-- function submitForm() { //make sure hidden and iframe values are in sync before submitting form //to sync only 1 rte, use updateRTE(rte) //to sync all rtes, use updateRTEs updateRTE('Message');
//Usage: writeRichText(fieldname, html, width, height, buttons) writeRichText('Message', '<b>Put your display content here </b>', 550, 200, true, false);
//uncomment the following to see a demo of multiple RTEs on one page //document.writeln('<br><br>'); //writeRichText('Message', 'read-only text', 550, 100, true, false); //-->
</script>
Here is the javascript used :
http://www.get2funds.info/cattest/richtext.js <
kolucoms6
17 April 2007, 05:01
I guess I have resolved it..
I will keep updated this forum
<
kolucoms6
19 August 2007, 02:18
A small issue :
After saving the data in my DB, how to retrieve it in formatted ?
<!-- function submitForm() {
//make sure hidden and iframe values are in sync before submitting form //to sync only 1 rte, use updateRTE(rte) //to sync all rtes, use updateRTEs updateRTE('Message');
//uncomment the following to see a demo of multiple RTEs on one page //document.writeln('<br><br>'); writeRichText('Message', 'read-only text', 550, 100, true, false); //-->