Enable Insert Smiley in HTML Standard Editor

Hi All,
I have been searching on how to show and enable the insert smiley toolbar in the HTML Editor Standard (FCKEditor). What I'm currently doing is use the source toolbar and input manually the img tags when inserting images.
It would be great if I could just use the existing insert smiley/images toolbar in the FCKEditor even if there's no real image uploading happening. I.e., just the image path text box and the img tags will be constructed automatically. Is this possible? Please help.
Message was edited by:
mertz

I'm doing exactly the same thing at the moment in my application.
I have a table with a CLOB column, and I have a page that selects from this table using a standard generated Automated Row Fetch process. Saving the data back into the table is done with a standard generated Automatic Row Processing (DML) process.
It works fine in both Firefox and IE8.
What do your processes to fetch and save the data look like?
And what versions of the browsers are you using?
Edited by: Michel van Zoest on Oct 1, 2009 11:01 AM

Similar Messages

  • Minimize the Html standard editor by default in Textarea

    Hi,
    I'm using Apex 3.0.1 for my application. I've used text area in the UI with the Html standard editor. I see that the page loads slowly coz the editor takes time to load with all the icons and stuff. Is there a way by which I can show the editor to be minimized on load? I think when required by clicking the 'arrow' icon the editor can be expanded. My application is more like a content management and so I'm using lots of text areas as this.
    Can someone let me know if this is feasible to do and so if, how to achieve it?
    Thanks,
    gsachidh

    There is no way of minimizing things in html.
    Off course you can hide items with javascript for example, but that doesn't prevent it from loading, so your load time will not decrease.
    If you put a condition on the item, it's not loaded at all so you save time.
    Then there's the advanced way: Replace a normal text area with an Ajax call to a editor text area. But that's some more work and not standard apex.
    Guido

  • Error while using "HTML Standard Editor" item in "Array VPN"

    Hi,
    The "HTML Standard Editor" item is not displayed properly when the person is trying to enter data, when he is logged in using Array VPN. An error appears in the item box "Unable to Process request. The requested URL has an unsupported encoding.". Can this be resolved? This error is appearing in Firefox, and in IE the box appears but is not editable,i.e Nothing can be entered in the box.
    Please assist me in this matter.
    Thanks,
    Vignesh

    Vignesh,
    I've worked with clients in the past that used VPN clients that attempted to cache and compress JavaScript code being sent to the browser. The problem was that the algorithms were terrible and ended up breaking the code.
    Do you know if this is happening? If so, there's probably an option to turn it off. Take a look at the source code for the problematic page using the VPN connection and compare it to the source from a page without using VPN. If the page is really busy you can create a blank test page and add the item that's not working. That should make comparing the changes easier. Consider using a code comparison utility.
    Regards,
    Dan
    http://danielmcghan.us
    http://www.skillbuilders.com

  • Facing a problem in "HTML Standard Editor" item type.

    Hi,
    I have been using an item which is of type "HTML Editor Standard" and I am using it to store a clob value into the database. The functionality works fine in Firefox but the value of the item is always null irrespective of whatever I type in that HTML editor standard item in IE. Please help me out with this issue. If you need more info on this issue, please reply me and I shall give all the input.
    Thanks,
    Vignesh
    Edited by: Vignesh N on Sep 30, 2009 9:09 PM

    I'm doing exactly the same thing at the moment in my application.
    I have a table with a CLOB column, and I have a page that selects from this table using a standard generated Automated Row Fetch process. Saving the data back into the table is done with a standard generated Automatic Row Processing (DML) process.
    It works fine in both Firefox and IE8.
    What do your processes to fetch and save the data look like?
    And what versions of the browsers are you using?
    Edited by: Michel van Zoest on Oct 1, 2009 11:01 AM

  • Need help creating message in HTML Standard Editor Item

    Hi,
    I have a requirement in which from page 1 using javascript I have to create a message with link into the HTML Editor Item on the different page on different application.
    everything works fine except when i compose a message which has a link eg. http://www.yahoo.com, it cuts off at http .
    please help me creating and passing link using javascript.
    Thanks,
    --K                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    This is a problem with passing a colon, see here for some solutions:
    problems when copying item from a page to another one
    passing string with a colon in it via a url

  • HTML / Word Editor in SAP HR

    Hi Experts
    Can anyone please advise how can HTML / Word editor be configured in SO10. The only option right now is standard text editor and even after changing editor, it doesn't help. Please advise. thank you
    Regards
    Neha

    Hi,
    check this oss note..might resolve.
    1819805 - Error message - SOFFICEINTEGRATION231
    Thanks
    Naren

  • HTML Standard/Minimal doesn't work in Safari browser

    Here's an issue that has been bugging me for quite some time, it's more of a bug and I finally decided to post it in the forums.
    I have an Item on a page for which the Display Type is set to HTML Editor Standard, the problem is that it works fine in most editors except Safari. Not sure what the issue is, has anyone been able to get this to work in Safari?
    Another issue is with formatting, I have another report page that displays the field that's tied to the HTML editor standard form page. The report page does not show the same formatting from the HTML editor. You would think the report will at least show the same formatting that was entered via the field.

    Oscar,
    Thanks for replying. I didn't realize that Apex is certified for IE and FireFox only. Safari is one of the best browsers and I find it strange that Apex is not supported.
    Since the HTML Standard toolbox is based on FCKeditor, just for kicks I checked their site and the demo works fine on Safari, i.e. I see the toolbar and the text looks formatted just as in FireFox.
    Also I performed another test, I downloaded the latest FCKEditor 2.6.4 and uploaded the main js file to application images and associated that with a report field (displayed as textarea, with id=f01_0001) and that worked partially in Safari (i.e. the toolbar showed up, the text looked formatted). I bet if I ftp the entire FCKEditor library to the unix folder and reference it from there, it will work just fine. It seems like next version of Oracle Apex need to update their FCKEditor library as the latest version of FCK Editor is certified on all browsers.
    <!-- <script type="text/javascript" src="/i/fck/fckeditor.js"></script> -->
    <script type="text/javascript" src="#WORKSPACE_IMAGES#fckeditor.js"></script>
    <script type="text/javascript">
    <!--
    function DESC_init() {
    var oFCKeditor = new FCKeditor( 'f01_0001' ) ;
    oFCKeditor.BasePath = "/i/fck/" ;
    oFCKeditor.Width = '760';
    oFCKeditor.Height = '555';
    oFCKeditor.ToolbarSet = 'Default' ;
    oFCKeditor.Config[ "AutoDetectLanguage" ] = false;
    oFCKeditor.Config[ "DefaultLanguage" ] = "en";
    oFCKeditor.ReplaceTextarea() ;
    addLoadEvent(DESC_init);
    //-->
    </script>
    Thanks
    Sujay

  • SMS - Sending to numbers not in your address book and inserting smiley faces

    Hi
    I'm new to the world of Blackberry and sorry if this has been posted elsewhere - I've trawled through and can't find anything similiar.
    When composing SMS messages, I can only send to those people who are in my address book as the address book automatically opens when you select compose SMS.
    Obviously there are times when you need to text to numbers not in your address book so how do you do it?
    So far the only solution I have got is to add numbers to my address book and then delete them.  Surely there must be a way you can just enter the number manually when you need to?
    Secondly is there a shortcut on the Blackberry Pearl to insert smiley faces in SMS messages without entering :-) manually?
    Thanks for your help
    Trish
    I love my Blackberry

    You right. I misread. Hitting the SYM key is only for messenger, not for SMS. I didn't anyway to insert emoticons into an SMS message
    If someone has been helpful please consider giving them kudos by clicking the star to the left of their post.
    Remember to resolve your thread by clicking Accepted Solution.

  • Firefox (15) inserts a "Firefox HTML document" in Windows Explorer File New menu. It breaks my works patterns (Alt FWF stops working). Need to disable.

    I often use the shortcut Alt FWF to create new directories on Windows.
    When FF 15 is set as default it alters the File New menu from Windows Explorer.
    It inserts a "Firefox HTML document" item.
    This item seems to sabotage the above key combination. It intercepts the last F.
    In addition I object to the naming which is plain wrong, for me.
    I have deleted the registry key that inserts this thing. Unfortunately it re-appears.
    I want to stop this behaviour.
    How do I kill this. (Other than by making another browser the default.)

    I'm not seeing that on Windows 7 (which I'm sure is no consolation to you).
    Since Folder usually is the top item on the new items menu, can you use
    <br>Alt+f w Enter
    until someone comes up with <s>a better workaround</s> an actual solution?

  • Enabling Insert allowed for particualr records in a block,

    Hi All,
    I have a requirement to enable insert allowed(and delete allowed) button for only particular records(say for all records where column1=2) and for all other values that insert allowed button should be disabled.
    I tried setting the property
    SET_BLOCK_PROPERTY for insert allowed for my block, in new_block_instance.
    when i'm querying the first time with column1=2, its working fine.
    But, when im querying my blcok with column1=5 and then requerying the block with column1=2, im facing issue. insert allowed button is disabled here.
    Not sure, whether this can be achieved or not using this way. Please suggest me if there is any other ways we can do in oracle forms.
    Thanks & regards,
    Pavan Kumar

    I have used the below code in when new record instance at block level,
    IF event='INSERT'
    THEN
    IF :xxscp_gbl_exp_detail_v.order_type=5
         THEN
         SET_BLOCK_PROPERTY('XXSCP_GBL_EXP_DETAIL_V',
         insert_allowed,
         property_true);
    ELSE
    SET_BLOCK_PROPERTY('XXSCP_GBL_EXP_DETAIL_V',
         insert_allowed,
         property_false);
    END IF;
    END IF;
    as i already told, it work when i directly search with order_type=5.
    But not working, when i first search with order_type=1 and then with order type 5.
    Thanks in advance,
    pavan

  • Flash CS5 crashes while inserting a keyframe in Motion Editor

    When I try to insert a keyframe in Motion Editor, Flash CS5 crashes.
    I tried to use two computers running the same Mac OS X 10.5.8 with the same specs and only one of the machines crashes.
    Any ideas?

    Is it any FLA on that machine?  As in, you can open a brand new FLA with nothing in it, draw a square, turn it into a tween, and inserting any keyframe in the motion editor crashes Flash?  That said, since you cannot reproduce on another system that's identical, it sounds like something went wrong in the install process.  I'm not sure what it might be, as we haven't encountered that kind of problem internally (or a crash on property keyframe insert).

  • Html code editor

    Is there any html code editor app for nokia asha 311..???

    Hi Noemí,
    Don't think there is any such functionality available in SAP.
    Regards,
    Atish

  • Froms6 on webi: Standard editor

    Hello,
    Actually we are upgrading our system to run on the web.
    We have problems with the standard editor using hebrew/english text on the same editor, so..
    We want to implement a private editor based on Java technology but we want that this editor differs much from the standard forms 6i editor.
    The question is about which java class, the forms 6i editor is based? JpanelText? or another swing class?
    thanks

    Hi,
    actually it seems to use oracle.forms.handler.EditorDialog, which is not a subclass of JPanelText but another Formd own class oracle.forms.handler.CommonDialog
    Frank

  • Can i change or modify or insert the data in standard tables

    hi gurus
    can i change /modify/insert the data in standard tables
    witout using module pools
    plz send the  progem lines also
    it ll be very helpful to me
    thank you
    kals.

    Hi Kalyan,
    It is not advisable to update standard tables directly or through your own module pool programs also.  The reasons are,
    1.  It is difficult to find out how many tables are updated through the transaction.  if we leave one table also as Mr.Andrew said data integrity will be lost.
    2.  Authorization objects and profiles will be totally bypassed if data is inserted through custom programs.
    3.  Complete data validation is not possible.  There are certain validations that are executed through code and appropriate errors and warnings are shown in the transactions.  If we insert data directly to the tables anything can be inserted into the table field violating all the validations unless we have field level check constraints on the tables at database level.
    4.  User Exits and BADIs that are implemented for specific business requirements and checks will not function on the data.
    5.  Update & Transaction locks will not work properly.
    Due to above reasons, definitely you should avoid updating standard tables directly.
    There are many tools such as LSMW Recordings, BDCs, BAPIs, IDOCs, Upload Interfaces available in SAP through which bulk data can be updated without using relevant transactions.
    You can collect data from end users in text or excel sheets or through custom programs in required format and upload at once through above mentioned tools.
    Regards,
    Hema

  • Shortcut for Inserting Smileys?

    Is there any way I can assign a keyboard shortcut for inserting smileys? Dragging the mouse over, clicking the menu, and choosing the smiley gets a little tedious. Is this possible? Thanks.
    AT

    Yeah, I noticed that (though thanks very much for pointing it out because I'd forgotten it). I guess I'm more interested in a faster way to insert these. I know, when I used to use AIM, from AOL, typing Ctrl-1 would produce one particular smiley and such was the case with cntrl and the 2-9 keys. This made it very easy to insert them quickly. I was just wondering if that was possible in Ichat, since Command-1 is dedicated to showing or hiding the main ichat screen. Thanks for the suggestion, though.
    AT

Maybe you are looking for

  • Report for analyse the sales realisation for a particular period

    Hi guys, Is there any report for analyse the sales realisation for a particular period. thanks murali

  • Confirmation of AT&T iphone refurb warranty coverage vs. new iphone

    I spoke with an AT&T agent today and she provided the following information with regard to warranty info when choosing a refurb or a new iphone 4S. Jemalyn D.: Thank you for the information. Jemalyn D.: Sure, not a problem on that one. Jemalyn D.: To

  • Current Month vs. YTD

    I am wanting to show account balances for the Current Month vs. Year to Date. I am using a BSO cube and have heard that Dynamic Time Series don't work in OBIEE, which is where we're going to be building reports off this data. We want this calculation

  • Acrobat X Pro v 10.1.10 (Mac OS 10.9.3) hangs when trying to save PDF files

    Acrobat X Pro v 10.1.10 (Mac OS 10.9.3) hangs when trying to save some PDF files, after opening or after commenting.  Applies for any of the Save options.  "Watch" then "spinning beach ball" appear and application is indicated as "not responding."  M

  • Error provsioning OS

    I was attempting my first provisioning a host and recieved the following error: <p> <br>Gathering network information.. <br>     Client: 10.0.2.52 (10.0.2.0/255.255.255.0) <br>     Server: 10.0.2.3 (10.0.2.0/255.255.255.0, SunOS) <br>Adding myportal