Displaying 20 results from an estimated 300 matches similar to: "Use of FCKEDITOR as normal text area"
2009 Jan 31
1
fckeditor and rails 2.2.2
Hi there
after I upgraded to rails 2.2.2, i got the error -> undefined
fckeditor_textarea method
while it works fine on rails 2.1.0
any idea?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to
2008 Nov 26
3
fckeditor_textarea
hi, i am currently using rails version 2.2.2.
and using fckeditor_textarea.
here is the code:
<%= fckeditor_textarea(:emailcontent,:body, {:toolbarSet => ''Basic'',
:width => ''100%'', :height => ''100%''}) %>
where emailcontent is the model(object) name,
and body is method.
but it''s not working,however
2008 May 28
3
Mocking objects to test Rails Controllers
Hi all,
I''m currently considering the use of Mocha to aid in writing my Rails
unit/functional tests.
I currently have a Rails model which mixes in a series of methods to
allow it to talk to an external service. The code is roughly of this form:
class Person < ActiveRecord::Base
include SMSNotifier
def send_notification(message)
send_sms(number,message)
#
2008 Dec 17
3
Access from common class
Hello!
I have made a common class and put it to the /lib folder of my Rails
application.
Now I have some problems with access to:
1. Mailers
Call to SupportMailer.send_activation_email gives an error:
NoMethodError (undefined method `send_activation_email'' for
SupportMailer:Class):
Ok, I have changed my SupportMailer class - give a prefix to the
function
function send_activation_email
2006 Mar 11
2
Customising FCKeditor
I would like to customise my FCKeditor-instance so that when the "add
image" button is pressed, it opens my own add_image popup.
In this popup i would handle the image upload/image browser/etc. tasks
with rails.
How can I open the popup and pass the picture information from there
back to FCKeditor''s textarea?
--
Posted via http://www.ruby-forum.com/.
2006 Mar 03
2
FCKEditor Image uploading feature
Hello,
I followed instructions on
http://www.joshuamcharles.com/rails/fckeditor.html
Added FCKEditor to my rails app which works great, but I''m not able to
upload images using the WYSISYG editor.
Is there a way to enable this feature in rails app? If not, where is the
images folder that FCK looks into it for images, so I can upload my images
manully there?
Thanks,
- Dunnil
--------------
2006 Mar 03
3
TinyMCE or FCKEditor (WYSISYG editor)
TinyMCE or FCKEditor? which one is the best from your experience?
Or anything better than these two for rails env?
Thank you all,
- Dunnil
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060303/7350e5df/attachment.html
2006 Sep 11
8
fckeditor works, but i cant get my buttons back...
I am going to bet this is a mongrel issue,because this doesn''t happen
under webrick. Anyway, I was able to get fckeditor: http://www.fckeditor.net/
to work under rails: http://www.joshuamcharles.com/xhtml/fckrails.php
i even saw the part about adding "1. Adding a YAML configuration file. For example, create
$(RAILS_ROOT)/config/mongrel_mime.yml with the contents:
xml:
2009 Apr 02
4
Uploads with FCKEditor
Hello everyone.
Since I''ve found very poor documentation about the rails FCKEditor
plug-in and Easy-FCKEditor (which is a fork of the very same plug-in),
I decided to bother you with my noobish questions.
I have this weird sensation that the image-uploading feature of
FCKEditor isn''t supposed to work magically, without some sort of
server side preparation, but I have no idea
2010 Apr 20
2
Javascript validations for word count in fckeditor
I need to count the number of words in fckeditor using javascript
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To unsubscribe from this group, send email to
2009 Nov 09
1
SendText
Does anyone have any success with sending a text message from
extensions.conf
to an PSTN endpoint such as a cell phone?
If so, kindly send configuration for this part. I am working on an IVR and
want
callers to get a text message at a particular part of the call, after
dialing a defined character (such as 22).
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2006 Jun 15
0
fckeditor not working in lighttpd
Hi there
We arethinking about switching from apache to lighttpd, but we are
having problem with the fckeditor...
it was working normally in apache and in webrick...
but not now, it does not show up
I followed the site :
http://www.joshuamcharles.com/rails/fckeditor.html
So it might be a configuration thing in lighttpd
any help is very apreciate it
jorge mario
2006 Sep 13
0
File Upload in FCKeditor
Just wandering if anyone has used fckeditor for file uploads other than
images and flash files, from rails?
--
Posted via http://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to
2008 Jul 01
8
redirect_to not working
Hi... I have a basic authentication system. I have a RESTful resource
called session with the following code when logging in:
def new
end
def create
user = User.authenticate(params[:username], params[:password])
respond_to do |format|
if user
session[:user_id] = user.id
flash[:notice] = "Welcome back #{user.name}!"
format.html {redirect_to
2006 Feb 17
7
Rich Text Editor (RTE)
Hello,
We are developing an commercial application that need to use an RTE.
Someone know one RTE editor that can I use in an commercial application?
We need basic functions to format paragrapher, bold, italic, ...
I found FCKEditor but it is very expensive and weight.
I found this list too but don''t know what is trustful:
http://www.geniisoft.com/showcase.nsf/WebEditors
Some
2009 Mar 10
5
onsubmit for remote_form_for not working properly
I want to use onsubmit for a form validation using javascript on
remote_form_for
for this i am doing something like this
<% remote_form_for :timesheet, @timesheet, :url =>{:action =>
''report_user''}, :html => {:onsubmit=>"return ValidateDate();" } do |f|
%>
// Form elements here
<% end %>
but it not works well. if condition return false
2008 Mar 14
8
Facebooker updates
I just went through and cleaned out most of the bugs and patches. I
also added a facebooker.js file that implements enough of prototype to
do $() and link_to_remote with :update and remote_form_for with :update
Let me know if you run into any issues with it.
Mike
--
Mike Mangino
http://www.elevatedrails.com
2009 Mar 23
1
Bounding width when we give users' TinyMCE or FCKEditor?
I finally got TinyMCE to work beautifully and now am trying to
understand how I will bound my users'' from not pushing the HTML beyond
the borders that I grant them.
For example, if I type;
9999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999
It goes off the edge of the <div> space I have defined for this
element.
Is there a
2004 Aug 08
1
asterisk-update script - and the script
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hi,
Here's a version I modified which grabs either a development or stable
verision, and does a backup before updating from CVS. It also asks for
addon's and cc.
Leif Madsen did the original development and Mark released it.
My changes does the minimum changes to previous version, to get what I need.
It does the same version checking as the
2005 Jul 18
1
Sending an SMS out of Asterisk via Kannel
GOAL: To pass variables from Asterisk to Kannel when sending out an
SMS message using a URL.
CURRENTLY: I am able to pass a URL via Asterisk to Kannel and out of
my GSM modem BUT I haven't figured out how to include Asterisk
variables in the string.
I was hoping someone could help me figure out what I'm doing wrong.
Perhaps there is a simple AGI I should be using. I am not