How to edit contents of a cell?

In Numbers 2013, how does one edit the content of a cell besides typing directly in the cell?
In all prior versions of Numbers (like Excel), there was an editing area below the toolbar that extended across the screen. That area could be used to edit the contents of the currently selected cell.
Has this been completely removed from Numbers 2013 or is there a way to make it appear? If not, how does one edit a cell when a lot of text is being entered?

I may not have the proper terminology, but it always starts out covering the cell, and sometimes other adjacent cells, but can be dragged anywhere on the page.
Jerry

Similar Messages

  • How to edit content in a cell - how can u set a shortcut to do that

    so i have been left clicking to change the content. how do you do that on the keyboard? i found a list of shortcuts under some menu in numbers, but i couldnt set the shortcuts myself
    thanks alot, this will save me soooo much time

    There is a partial solution to this that will allow you to enter the formula editor for any selected cell from the keyboard:
    1. In System Preferences, select the "Keyboard Shortcuts" section of the Keyboard & Mouse" preference.
    2. Click the plus box button below the list to add a shortcut.
    3. In the drop down sheet, from the "Application:" popup that defaults to "All Applications," choose Numbers if it is listed (it probably will not be) or if not, scroll to the end of the list & select "Others..." & navigate to Numbers in the Application folder & choose it. (The basic idea is to create an application-specific keyboard shortcut for Numbers.)
    4. In the "Menu Title:" text box type "Formula Editor" (without the quotes)
    5. Select the "Keyboard Shortcut:" box & press the keys for the desired keyboard shortcut. This can be anything that includes one or more modifier keys (Command, Control, Option, etc.), but to prevent conflicts, choose something not already in use & not something that would be a character you would want to enter in a cell.)
    6. Click the "Add" button, then scroll down in the shortcuts list window to the "Application Keyboard Shortcuts" section, click the triangle to show them, & check that the shortcut is listed, & that not yellow warning triangle appears, signifying a shortcut conflict.
    7. If Numbers is running, quit & relaunch it so that the shortcut will take effect.
    As noted above, this only helps with cells that have, or will have, formulas in them. It works exactly like the menu command Insert>Function>Formula Editor: If the cell does not currently have a formula but some literal value, the formula popup will not include it, & if you then click the "Accept" button, type a return, tab, etc., the literal value will be replaced. If the cell already has a formula, the formula popup will not replace it but instead will move the insertion point to after the last character in the existing formula.
    The same technique will work for adding keyboard shortcuts to any other Numbers menu item.
    Had there been an "Enter cell editor" (or something like that) menu command, presumably this would have allowed a complete solution, but there doesn't even seem to be an official name for doing that -- the documentation refers to it only procedurally, as in 'click again' or the like. Obviously, there is no need for the menu item other than for this, so a complete solution will have to wait for a new version of the app.

  • How to change content of DataGrid cell on mouse over

    I am trying to change content of a datagrid cell when the mouse is over it. Changing the dataProvider does not provide immediate feedback because update is performed by renderer. I am trying to directly update content of a cell onMouseOver and restore it onMouseOut.
    I am thinking of leaving the column empty and insert content onMouseOver, cleanup onMouseOut. Alternative, may be I can populate the column and mask out all but the cell the mouse is over.
    Any suggestion on how this may be done?
    Thanks!

    I would override updateDisplayList, call isItemHighlighted and set the content of the cell accordingly
    Alex Harui
    Flex SDK Developer
    Adobe Systems Inc.
    Blog: http://blogs.adobe.com/aharui

  • How do I change cell focus after editing contents of a cell?

    Similar to tab/shift-tab to move focus a column right/left, respectively.  Is there a shortcut to move up/down?  I have tried every combination of fn/ctrl keys and can't seem to find this on the shortcuts for Numbers.

    Jerrold Green1 wrote:
    Badunit wrote:
    Or you can hit ESC to break the focus and stay in the cell.
    ...and cancel the input you just made.
    Jerry
    My mistake. In most cases it would do as you said.  I was doing something a little different than what was posted. I was entering the cell, typing in a number (or using option-return) to give it focus, then using the up/down arrow keys to adjust it before trying to break the focus. I guess I never tried entering a number then hitting esc which, as you said, cancels the change.

  • How to edit contents of Form in PE51 in  HR Module

    Dear Experts,
    I need to add some fields in Payslip through PE51 and edit some field also,pls tell me how to do it.
    Thanks n regards
    Anwar
    Edited by: Anwar Jamal on Feb 15, 2008 2:25 PM

    First find out the form name, go to SE71 tcode enter the form name in change mode, check for the field in which window they have populated and modify according to your requirement. Finally activate the form before executing it.
    Reward if useful.
    Thanks,
    Kishore

  • How to shift content with in cell in xml rules table

    Hi all scripters,
    I've created a table using xml rules with 3 nos of cells where first cell contain some data and so on but in next row first cell may of may not contain any data so in that row second cell data shifted to first cell and thired row data shifted to second cell which is very anxious for me since second cell data in each row should be in second cell only.
    For Instance-: Required output
    Title
    PageNo
    Subject
    Title
    46
    The Subject
    50
    Another Subject
    54
    Subject
    Title
    60
    Another Subject
    64
    The subject
    The out put I am getting by script-:
    Title
    PageNo
    Subject
    Title
    46
    The Subject
    50
    Another Subject
    54
    Subject
    Title
    60
    Another Subject
    64
    The subject
    myRuleSet = new Array ( new ProcessSec,
               new ProcessPara,
               new ProcessSecHead,
               new ProcessArt,
               new ProcessPG,
    with(myDocument){
        var elements = xmlElements;
         __processRuleSet(elements.item(0), myRuleSet);
    function ProcessSecHead(myXPath){
        this.name = "ProcessSecHead";
        this.xpath = myXPath;
        this.apply = function(myElement, myRuleProcessor){
       with(myElement){
                __skipChildren(myRuleProcessor);
                  var myNewElement = myContainerElement.xmlElements.item(-1).xmlElements.add(app.documents.item(0).xmlTags.item("Cell"));
         myElement.move(LocationOptions.atBeginning, myContainerElement.xmlElements.item(-1).xmlElements.item(-1));
        return true;
    function ProcessPara(){
        this.name = "ProcessPara";
        this.xpath = "//para";
        this.apply = function(myElement, myRuleProcessor){
                var myNewElement = myContainerElement.xmlElements.add(app.documents.item(0).xmlTags.item("Row"));
            return true;
    function ProcessArt(){
        this.name = "ProcessArt";
        this.xpath = "//para/aug";
        this.apply = function(myElement, myRuleProcessor){
            with(myElement){
                __processChildren(myRuleProcessor);
                var myNewElement = myContainerElement.xmlElements.item(-1).xmlElements.add(app.documents.item(0).xmlTags.item("Cell"));
                myElement.move(LocationOptions.atBeginning, myNewElement);  
            return true;
    function ProcessPG(myXPath){
        this.name = "ProcessPG";
        this.xpath = myXPath;
        this.apply = function(myElement, myRuleProcessor){
            with(myElement){
                __skipChildren(myRuleProcessor);
                var myNewElement = myContainerElement.xmlElements.item(-1).xmlElements.add(app.documents.item(0).xmlTags.item("Cell"));
                myElement.move(LocationOptions.atBeginning, myNewElement);
            return true;
    Any would be greatly appreciated
    Mac

    Wow, sorry for the delay.
    This paradigm is difficult enough to deal with, but Adobe's example code really does not encourage you to handle this reasonably at all.
    I've basically rewritten the entire process, and I've introduced a new paradigm for creating rules that I think is a lot more readable and flexible and allows for parametrization. Anyhow, here you go. Any questions?
    /*jslint undef: true, newcap: true, nomen: false, regexp: true,
            bitwise: true, onevar: true, indent: 4, white: false */
    /*global File, LocationOptions, PageSideOptions,
      UserInteractionLevels,
      __processChildren, __processRuleSet, alert, app */
    #include "glue code.jsx";
    // handy debugging function; e.g.: $.writeln(dumplist(x.xmlElements));
    function dumplist(l) {
        var i, rv = [];
        rv.push("has "+l.length+" elements:");
        for (i=0; i<l.length; i++) {
            rv.push("  "+i+"\t"+l[i].toSpecifier()+
                        "\t"+l[i].markupTag.name);
        return rv.join("\n");
    // Initialize a tags object to map strings to tags.
    function initTags(doc, tagnames) {
        var i, t, tags = {};
        for (i=0; i<tagnames.length; i++) {
            try {
                t = doc.xmlTags.add(tagnames[i]);
            } catch (e0) {}
            tags[tagnames[i]] = doc.xmlTags.itemByName(tagnames[i]);
         return tags;
    // Handy subtree functions
    function firstChildTag(node, tag) {
        var i, e = node.xmlElements;
        for (i=0; i<e.length; i++) {
            if (e[i].markupTag === tag) {
                return e[i];
        return node;
    function lastChildTag(node, tag) {
        var i, e = node.xmlElements;
        for (i=e.length-1; i>=0; i--) {
            if (e[i].markupTag === tag) {
                return e[i];
        return node;
    //// XML rule functions
    // Adobe's sample for how to define these is HORRIBLE.
    // Let's fix several of these problems.
    // First, a handy object to make clearer the return values
    // of XML rules:
    var XMLmm = { stopProcessing: true, continueProcessing: false};
    // Adobe suggest defining rules constructors like this:
    //   function RuleName() {
    //       this.name = "RuleNameAsString";
    //       this.xpath = "ValidXPathSpecifier";
    //       this.apply = function (element, ruleSet, ruleProcessor){
    //       //Do something here.
    //       //Return true to stop further processing of the XML element
    //       return true;
    //       }; // end of Apply function
    // And then creating a ruleset like this:
    //   var myRuleSet = new Array (new RuleName, new anotherRuleName);
    // That syntax is ugly and, and is especially bad if
    // you need to parametrize the rule parameters, which is the only
    // reasonable approach to writing reasonable rules. Such as:
    //   function addNode(xpath, parent, tag) {
    //       this.name = "addNode";
    //       this.xpath = xpath;
    //       this.apply = function (element, ruleProcessor) {
    //           parent.xmlElements.add(tag);
    //           return XMLmm.stopProcessing;
    // and then creating a ruleset like:
    //   rule = new Array (new addNode("//p", someTag));
    // So instead we introduce a makeRule function, that
    // allows us to leave behind all the crud. So then we can write:
    // addNode = makeRule("addNode",
    // function(element, ruleProcessor, parent, tag) {
    //     parent.xmlElements.add(tag);
    //     return XMLmm.stopProcessing;
    // and use:
    // rule = [ addNode("//p", someTag ];
    function makeRule(name, f) {
        return function(xpath) {
            var
                //xpath=arguments[0],
                   // "arguments" isn't a real array, but we can use
                   // Array.prototype.slice on it instead...
                   args=Array.prototype.slice.apply(arguments, [1]);
            return {
                name: name,
                xpath: xpath,
                apply: function(element, ruleProcessor) {
                        // Slice is necessary to make a copy so we don't
                        // affect future calls.
                    var moreargs = args.slice(0);
                    moreargs.splice(0, 0, element, ruleProcessor);
                    return f.apply(f,moreargs);
    // Create a new node at parent. Doesn't do
    // anything with the XPath context node.
    var addNode = makeRule("addNode",
    function(element, ruleProcessor, parent, tag) {
        parent.xmlElements.add(tag);
        return XMLmm.stopProcessing;
    // Create a cell for a table, adding a node to
    // the last node of the last node of the
    // table. Duplicate the context
    // node as a child of that cell.
    var makeCell = makeRule("makeCell",
    function(element, rp, table, outertag, innertag) {
        var
            cell = table.xmlElements[-1].xmlElements.add(outertag),
            copy = element.duplicate();          
        copy.markupTag = innertag;
        copy.move(LocationOptions.AT_BEGINNING, cell);
        return XMLmm.stopProcessing;
    // Apply from() to the context node to get
    // a source node. Copy that source node
    // to be the first child of the context node.
    var copyFromToChild = makeRule("copyFromToChild",
    function(element, ruleProcessor, from) {
        var copy = from(element).duplicate();       
        copy.move(LocationOptions.BEFORE,
          element.xmlElements[0]);   
        // __skipChildren(ruleProcessor);
        return XMLmm.continueProcessing;
    // We don't actually use this, but it was useful
    // in debugging. Essentially "rename" a node.
    // Set the tag of the context node to the
    // specified tag.
    var setTag = makeRule("setTag",
    function(element, ruleProcessor, newtag) {
        element.markupTag = newtag;
        return XMLmm.stopProcessing;
    // Apply from() to the context node to get
    // a source node. Apply to() to the
    // context node to get a destination node.
    // Move the source node in the specified
    // location (how) to the destination node.
    var moveFromTo = makeRule("moveFromTo",
    function (element, ruleProcessor, from, how, to) {
        __processChildren(ruleProcessor);
        var src = from(element);
        src.move(how, to(element));
        return XMLmm.continueProcessing;
    // end rule functions
    // It's just not worth rewriting some of Adobe's ugly functions...
    // but at least fix it up so it JSLints.
    function myGetBounds(myDocument, myPage){
        var
            myPageWidth = myDocument.documentPreferences.pageWidth,
            myPageHeight = myDocument.documentPreferences.pageHeight,
            myX1, myX2, myY1, myY2;
        if(myPage.side === PageSideOptions.leftHand){
            myX2 = myPage.marginPreferences.left;
            myX1 = myPage.marginPreferences.right;
        else{
            myX1 = myPage.marginPreferences.left;
            myX2 = myPage.marginPreferences.right;
        myY1 = myPage.marginPreferences.top;
        myX2 = myPageWidth - myX2;
        myY2 = myPageHeight - myPage.marginPreferences.bottom;
        return [myY1, myX1, myY2, myX2];
    function myGetScriptPath() {
        try {
            return app.activeScript;
        catch(myError){
            return new File(myError.fileName);
    // OK, the actual program.
    function main() {
        var
            doc = app.activeDocument,
            page = doc.pages[0],
            root = doc.xmlElements[0],
            //inputFile = new File(myGetScriptPath().path+ "/mac.xml"),
            inputFile = File.openDialog(),
            tags = {},
            p, table;
        if (app.documents.length<1) {
           alert ("Open a document and run the Script");
           return false;
         // Let's not use a seperate variable for each tag. Instead,
         // we'll keep an Object that maps strings to tags.
        tags = initTags(doc,
                             ["table", "para", "article",
                              "section", "section-head", "tr", "td", "p"]);
        doc.xmlImportPreferences.allowTransform = false;
        doc.xmlImportPreferences.ignoreWhitespace = true;
        app.scriptPreferences.userInteractionLevel =
              UserInteractionLevels.NEVER_INTERACT;
        doc.importXML(inputFile);
        app.scriptPreferences.userInteractionLevel =
              UserInteractionLevels.INTERACT_WITH_ALL;
        // For each <para>, copy the parent's <section-head> inside.
        // Next, move each <article> node to the end of the <para>,
        // placing it after the <page> node.
        __processRuleSet(root, [
            copyFromToChild(
                "//para",
                function(n) {
                        return firstChildTag(n.parent,tags["section-head"]);
            moveFromTo(
                "//para",
                function(n) { return firstChildTag(n, tags.article); },
                LocationOptions.AT_END,
                // This is more general than we need to be; we're moving
                // to "the end", but the end of WHAT? It need not be the
                // <para>, it could be some other node.
                function(n) { return n; })
        // Add a <p> node to hold the table we're about to create.  It's
         // not super-clear from the documentation, but
         // convertElementToTable creates a text node of the table in the
         // XLM structure. In order to then place that into a frame, there
         // has to be an enclosing XML node to do so. We choose <p> for
         // lack of a better tag.
        p = root.xmlElements.add(tags.p);
        table = p.xmlElements.add(tags.table);
        // For each para node, add a <tr> to the table.  For each
        // <section-head>, <page>, or <article>, add a <td> to the last
        // <tr> of the table
        __processRuleSet(root, [
            addNode("//para", table, tags.tr),
            makeCell("//para/section-head", table, tags.td, tags.p),
            makeCell("//para/page", table, tags.td, tags.p),
            makeCell("//para/article", table, tags.td, tags.p)
         // Make it a table and GO!
        table.convertElementToTable(tags.tr, tags.td);
        p.placeIntoFrame(page, myGetBounds(doc, page));
    main();
    I also tried to format this to 72 columns so that it doesn't scroll on the forums. Let's see if that works...Nope, not quite. Oh well. Close enough.

  • How to edit content in Visual Studio

    Hello,
    I used Windows App Studio to create an app:
    http://www.windowsphone.com/en-ca/store/app/%E5%A6%99%E6%B3%95%E8%93%AE%E8%8F%AF%E7%B6%93%E8%A7%80%E4%B8%96%E9%9F%B3%E8%8F%A9%E8%96%A9%E6%99%AE%E9%96%80%E5%93%81/388838ac-7fb1-4a6c-9583-634d5199e6c7
    However, there is a word limitation for each page.  Hence, I download Visual Studio Express 2013 for windows.  
    I use Visual Studio to open my Source Code for the app above (the source code is generated when I publish the app), and i try to find my "words" context.  I went through all the folders at Solution Explorer on my right hand side, but i am
    unable to find my content.   I click the "box" that should have contained my text at Main Page. Xaml, and that empty box is called Hubsection.
    I want to make my 2 pages content in my current app into 1 page.  At Windows app studio, they said I have too many words, and i must break it into 2 pages.  
    Please help me if you know what to do.
    Thanks!
    Mucc

    Hi,
    Here is a sample code to send email:
    public static string SendEmail(
    SPWeb spWeb,
    string from,
    string to,
    string cc,
    string bcc,
    string subject,
    string body,
    bool isBodyHtml)
    LogHelper.LogMethodStart(logger, "SPEmailHelper", "SendEmail");
    string emailSummary;
    var messageHeaders = new StringDictionary();
    ValidationHelper.VerifyStringArgument(to, "to");
    ValidationHelper.VerifyStringArgument(from, "from");
    ValidationHelper.VerifyStringArgument(subject, "subject");
    ValidationHelper.VerifyStringArgument(cc, "cc");
    ValidationHelper.VerifyStringArgument(bcc, "bcc");
    messageHeaders.Add("to", to);
    messageHeaders.Add("from", from);
    messageHeaders.Add("subject", subject);
    messageHeaders.Add("cc", cc);
    messageHeaders.Add("bcc", bcc);
    string mimeType = "text/plain";
    if (isBodyHtml)
    mimeType = "text/html";
    messageHeaders.Add("content-type", mimeType);
    bool sendMail = SPUtility.SendEmail(
    spWeb,
    messageHeaders,
    body);
    if (sendMail)
    emailSummary = "<EmailMessage>" +
    "<To>" + to + "</To>" +
    "<From>" + from + "</From>" +
    "<Subject>" +
    SPEncode.HtmlEncode(subject) +
    "</Subject>" +
    "<CC>" + cc + "</CC>" +
    "<BCC>" + bcc + "</BCC>" +
    "<Body>" +
    SPEncode.HtmlEncode(body) +
    "</Body>" +
    "</EmailMesage>";
    else
    throw new SafException("Failed to send email.");
    LogHelper.LogMethodEnd(logger, "SPEmailHelper", "SendEmail");
    return emailSummary;
    Source: https://www.collaboris.com/blogs/collaboris-blog/mark-jones/2012/11/06/code-sample-how-to-programmatically-send-an-email-in-sharepoint#.VN3GG9eqqko
    Please remember to up-vote or mark the reply as answer if you find it helpful.

  • How to edit content in sample.portal

    Hi everybody,
    I am a newbie at Weblogic Workshop 8.1. I am trying to edit the content (in Portal
    Administration) of the sample.portal. I use the weblogic user (which I suppose
    has all the rights and privileges needed). I cannot see any content to be edited
    at all. Is the sampleportal protected in someway ? I have created my own administrator
    account with the the rights needed, but still no result ...
    regards
    Marcel Hartgers

    Ok, thanks russ will do ...
    "Russell Teabeault" <[email protected]> wrote:
    Marcel,
    It sounds as if you have not created a portal and desktop in the
    administration portal. The .portal file that you create in workshop
    is
    essentially a template. To be able to use the resources defined in this
    template you must create a desktop based on the portal template file
    (.portal). In this case you need to create a desktop based on the
    sample.portal file. I suggest that you read the following:
    http://e-docs.bea.com/wlp/docs81/adminportal/help/PM_OV.html
    http://edocs.bea.com/wlp/docs81/adminportal/help/PM_DesktopCreate.html
    russ
    "Marcel Hartgers" <[email protected]> wrote in message
    news:[email protected]..
    Hi everybody,
    I am a newbie at Weblogic Workshop 8.1. I am trying to edit the content(in Portal
    Administration) of the sample.portal. I use the weblogic user (whichI
    suppose
    has all the rights and privileges needed). I cannot see any contentto be
    edited
    at all. Is the sampleportal protected in someway ? I have created myown
    administrator
    account with the the rights needed, but still no result ...
    regards
    Marcel Hartgers

  • How to edit content on formerly signed document

    We use signed PDF documents to contain customer order characterization information.  The PDF is setup as an interactive form which is modified for the customer.  Some fields are text while others are check boxes, etc.  Sometimes there is a need to remove the signature, make modifications to the document, and re-sign it.
    I have used the Tools/Pages/Extract tool to create an unsigned version of my PDF, but the resulting file refuses to allow its content to be changed.  The extracted file shows all of the document restrictions as allowed and the fields are selectable, but cannot be changed.
    Any thoughts?
    Thanks...

    the content which he is modifying should be effeted on server means when he presses save or upload the content should goes to server for upload

  • How to edit cell in a Data Grid

    Hai
        I have pasted the mxml below.
       I need how to edit a cell in a datagrid.
      1. Run the mxml, enter the values in the textbox and click add button.
      2. then click AND button, now u can see the values displayed in the grid.
    3. Then again change the second combobox and enter the values in the textbox and click add
    4. Now i need to edit the values for a particular cell in the datagrid.
    In the below code u can see the Value column,
    i need to edit oly that cell of a particular row .
    Can anyone help me.
    Thanks in Advance
    <?xml version="1.0" encoding="utf-8"?><mx:Application 
    xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
    <mx:Script>
    <![CDATA[
    // ActionScript fileimport  
    mx.rpc.events.FaultEvent;
    import  
    mx.controls.Alert; 
    import mx.managers.CursorManager;
    import  
    mx.collections.ArrayCollection;[
    Bindable] 
    public var adhoc:ArrayCollection = new ArrayCollection();[
    Bindable] 
    public var serverString = "" ; 
    private function initImage(event:MouseEvent):void { 
    if(adhoc.length > 0){CursorManager.setBusyCursor();
    private function onChange():void{ 
    if(comboBox.selectedIndex == 0){ 
    else{ 
    private function onChange1():void{ 
    if(combo2.selectedItem == "DATEDEPLOYED" || combo2.selectedItem == "DATEUPLOADED"){datepick.visible =
    truetxt.visible =
    false}
    else{txt.visible =
    truedatepick.visible =
    false}
    private function add():void

    You can enable editing in a DG to the whole DG or only to certain columns
    http://blog.flexexamples.com/2008/05/11/creating-an-editable-datagrid-control-in-flex/
    If you want to enable editing to a very specific cell then you use the event itemEditBegin to prevent editing a cell that doesn't meet your criteria
    http://livedocs.adobe.com/flex/3/html/help.html?content=celleditor_7.html

  • How to edit the content.opf  file of a FXL EPUB?

    I'm exporting a fixed layout epub and I cannot find out where the content.opf file is and how to edit it.  I'm trying to do the same thing that was done here: Indesign CC 2014 Fixed Layout export
    Can anyone point me in the right direction? I've googled to no end!
    Thanks,

    Please follow these steps to edit your EPUB:
    1. Download Sigil https://code.google.com/p/sigil/downloads/list
    2. Open your EPUB in this editor.
    3. In the book browser view on your left, look up for content.opf file. Edit this file and save your EPUB.
    Regards,
    Pooja
    InDesign Engineering

  • How to move content after editing

    Hi All ,
    I use adobe pro to edit an existing pdf file .
    In this pdf file , there is a graphic , I can use text edit function to cut this graphic , it works fine .
    However , the page will become blank after cut the graphic , for example , there is a graphic on the upper of page 2 , after cut the graphic , this part will become blank.
    How can the content of page 3 move upwards , that mean the content of page 3 replace the blank part of page 2 ? thanks 

    You said you couldn't. If you can get the original file, then you need the original app. So if it was a Word document, you need Word; if it was an InDesign document you need InDesign; if it was some obscure expensive software you need that.
    Having a PDF is not much better than having the stuff printed on paper. A bit better, but not much. This is why it's so important to keep your own originals, and for everything else to negotiate originals as part of copyright clearance.

  • I need to allow my customer to edit content on an HTML page within their browser. How can it be done

    Hi,
    I have a need for my customers to be able to edit content (text and links) within a region of a page in their browser. I read about "Editable Regions" and templates but it appears that our users would need Dw installed.
    Is that true?
    If so, how do you handle security so only my customer can edit content?
    Is there another method I can use in any other of the Creative Cloud apps?
    Is there some JavaScript that can be used?
    Thanks for your help!
    Franklin

    Content Management Systems come big and small.  The right one depends on:
    your coding skills,
    which programming languages & databases your server supports (PHP, ASP, ColdFusion, etc...)
    project requirements,
    budget
    COMMERCIAL CMS
    Cushy CMS (watch the video to see how it works)
    No PHP or databases required.
    http://www.cushycms.com
    Perch
    PHP & MySql required
    http://grabaperch.com/
    Media Carbon (formerly called "Content Seed")
    No databases required
    Available in ASP or PHP "Seed" versions
    http://mediacarbon.com/
    WebAssist Power CMS Builder (Extension for DW)
    http://www.webassist.com/dreamweaver-extensions/powercms-builder/
    Adobe Business Catalyst (subscription includes CMS & web hosting)
    http://www.businesscatalyst.com/
    OPEN SOURCE
    Get Simple CMS -
    PHP, no database required.
    http://get-simple.info/
    e107 CMS
    PHP & MySql required
    http://e107.org/
    PyroCMS (built with CodeIgnitor)
    PHP & MySql required
    https://www.pyrocms.com/
    Nancy O.

  • How do i edit content type name or remove in applications panel

    how do i edit content type name or remove the name in applications panel.In the App panel the name is Winrar zip Archive. when i try to download rar file is all way ask me what to do.when i download zip file is save the files.I would like to add rar to the Applications panel

    The MIME Edit extension for Firefox 3.0 - 3.7 versions is available here:
    http://space.geocities.yahoo.co.jp/gl/alice0775/view/20080912/1221150790
    The developer who updated that extension is from Japan, and that website won't be completely readable if you don't have the correct language package installed.
    You can download it directly from this link and save it to local disk.
    http://space.geocities.jp/alice0775/STORE/mime_edit-0.601004242000.xpi
    Then use File > Open File... to install that extension.

  • How do I disable editing of pages in author mode? User should not be able to edit content . Can this

    How do I disable editing of pages in author mode? User should not be able to edit content . Can this be customized on component basis?

    You have to remove modify rights for those users on that page. Component basis is possible but will create ACL complications. Please check http://dev.day.com/docs/en/cq/current/developing/components/boilerplates.html for that.
    Yogesh
    www.wemblog.com

Maybe you are looking for

  • Windows not showing. Page source and library windows open but not showing.

    I select View --> Page Source and no window appears. Under the Window menu, the item Source: . . . shows but no window. If I close the main window then the item is ticked but still no actual window. I have disable all extensions and plugins, safe mod

  • Ship-to address line item issue in ISA

    We're facing a problem regarding ship-to addresses when placing orders in the B2C scenario of the ISA with a CRM backend. When an order is placed, the ship-to address is correctly populated in the header of the order. However, in the line items, this

  • Bpelc issues with WSDL schema definition

    Hi, I have been attempting to deploy a relative simple BPEL example, developed using the BPEL Designer Eclipse plugin and deployed on BPEL Process Manager. The BPEL consists of receiving a SOAP message, copying variables using assign from the input m

  • Autonomy, Governance and Monitoring Inter Organisational BPM

    Hi All, Which technological approach is suitable for implementing Collaborating BPM across the value chain from the point of view of Autonomy, Governance, Security, and Monitoring? What are the benefits of selecting the one approach over the other? T

  • Atl2.tar.gz - package request

    Could anyone make me a package of it: http://aur.archlinux.org/packages.php?ID=15070 Please help ^^