Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6671747
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T03:25:32+00:00 2026-05-26T03:25:32+00:00

I am just wondering if there is a simple solution already to the problem

  • 0

I am just wondering if there is a simple solution already to the problem of turning selected content in tinymce to upperCase letters.

Anyone got a solution?

PS: The upperCase-function is known, but won’t solve the tinymce setting of selected content alone.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T03:25:33+00:00Added an answer on May 26, 2026 at 3:25 am

    This is what i came up with after some fiddling

            // check if a node intersects the given range
            rangeIntersectsNode: function (range, node) {
                var nodeRange;
                if (range.intersectsNode) {
                    return range.intersectsNode(node);
                }
                else {
                    nodeRange = node.ownerDocument.createRange();
                    try {
                        nodeRange.selectNode(node);
                    } catch (e) {
                        nodeRange.selectNodeContents(node);
                    }
    
                    return range.compareBoundaryPoints(Range.END_TO_START, nodeRange) == -1 &&
                        range.compareBoundaryPoints(Range.START_TO_END, nodeRange) == 1;
                }
            },
    
    
    // Tinymce-Shortcut:  (cmd/ctrl + shift +a)
    if ( ( (mac && evt.metaKey)|| (!mac && evt.ctrlKey)) && evt.shiftKey && evt.keyCode == 65 ){
    
        if (!ed.selection.isCollapsed()) {
    
            var selection   = ed.getWin().getSelection();   // user selection
            var range       = selection.getRangeAt(0);      // erste range
            var start       = range.startContainer;
            var start_offset = range.startOffset;
            var end         = range.endContainer;
            var end_offset  = range.endOffset;
    
            // Get all textnodes of the common ancestor
            // Check foreach of those textnodes if they are inside the selection
            // StartContainer and EndContainer may be partially inside the selection (if textnodes)
            // concatenate those textnode parts and make toUppercase the selected part only
            // all textnodes inbetween need to become upperCased (the nodeContents)
            // Selection needs to be reset afterwards.
            var textnodes = t.getTextNodes(range.commonAncestorContainer);
            for (var i=0; i<textnodes.length; i++) {
                if (t.rangeIntersectsNode(range, textnodes[i])){
                    if (textnodes[i] == start && textnodes[i] == end) {
                        var text_content = start.textContent;
                        text_content = start.textContent.substring(0, start_offset) + text_content.substring(start_offset, end_offset).toUpperCase() + end.textContent.substring(end_offset);
                        textnodes[i].nodeValue = text_content;
                    }
                    else if (textnodes[i] == start){
                        var text_content = start.textContent.substring(0, start_offset) + start.textContent.substring(start_offset).toUpperCase();
                        textnodes[i].nodeValue = text_content;
    
                    }
                    else if (textnodes[i] == end){
                        var text_content = end.textContent.substring(0, end_offset).toUpperCase() + end.textContent.substring(end_offset);
                        textnodes[i].nodeValue = text_content;
                    }
                    else {
                        // Textnodes between Start- and Endcontainer
                        textnodes[i].nodeValue = textnodes[i].nodeValue.toUpperCase();
                    }
                }
            }
    
            // reset selection
            var r = ed.selection.dom.createRng();
            r.setStart(start, start_offset);
            r.setEnd(end, end_offset);
            ed.selection.setRng(r);
    
            evt.preventDefault();
            return false;
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Just wondering if there was a nice (already implemented/documented) algorithm to do the following
Just wondering if there's any out of the box solution for this, I am
Just wondering if there is an easy way to add the functionality to duplicate
Just wondering if there is any way (in C) to get the contents of
Just wondering if there is a better way to write the following PL/SQL piece
Just wondering if there is a Python MTA . I took a look at
Just wondering if there is any way to get the NS records in C#.
Just wondering if there's a website out there that allows you to hotlink to
Just wondering if there are any pitfalls using .net as the extension for a
Just wondering if there is any benchmark software that I can download that will

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.