How to make editing desktop version automatically edit mobile and tablet versions

Hello,
I have a website that is currently under development, and I was wondering if there is a way for the Mobile and Tablet versions to automatically update, when I edit the Desktop version.
Thanks,
Jeremy

If you're using Business Catalyst & Muse you can create a content holders .  Place the Module on each page, then simply update the content holder via BC Admin and all pages will be updated. If you're not using Business Catalyst then you will always need to update each layout element.

Similar Messages

  • How to make editing cell to show up caret and taking keyboard event

    Hello everyone:
    I have the following problem with table editing.
    1. using mouse clicking, the editing cell will have cursor and taking keyboard event.(no problem with it)
    2. just type in data, it will show up in the selected cell, but the editing cell do not have cursor visible and also do not fire the keyboard event.
    I have problem with this one. So how to make editing cell to have caret visible and taking keyboard event.
    Thank you very much!
    --tony                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Hi,
    you should subclass JTable and overwrite two methods.
    1. protected boolean processKeyBinding(javax.swing.KeyStroke ks,
    java.awt.event.KeyEvent e,
    int condition,
    boolean pressed)
    to store the current keyboard event,
    2.public boolean editCellAt(int row,int column,java.util.EventObject e)
    to fix the problem with isCellEditable and curret position and direct the event into proper place.

  • My backlight will not turn off automatically.  I have to manually turn it off and forget to sometimes and that drains my battery.  Does anyone know how to make it turn of automatically after a few seconds?

    My backlight will not turn off automatically.  I have to manually turn it off and forget to sometimes and that drains my battery.  Does anyone know how to make it turn of automatically after a few seconds?

    Use the Settings app.
    Settings > General > Auto Lock
    Is Auto Lock set to Never? Change it to less time.

  • How to make mac desktop run faster . It is starting to freeze up in Safari sometimes.

    How to make IMAC desktop run faster.

    Mavericks is the Operating System, while you could call it a program it's the OS. We need to know:
    what year iMac you have including the amount of RAM installed, the capacity of the internal HD and how much is stored on it and under what conditions the computer runs slowly. Please CAREFULLY read Help us to help you on these forums

  • How to make a Integration between jdev10.1.2 and vss

    How to make a Integration between jdev10.1.2 and vss to enable a version control.the help document tell to make a extension file, but how to do? thank you!

    http://www.oracle.com/technology/products/jdev/101/htdocs/partners/addins/905resources.html
    There is a link there to:
    Creating a Version Control System Extension
    A project with sample code to get you started

  • How to make a vedio call in windows mobile

    sir iam using htc touch pro2 t7373 rhod100 i am use skype but i cant make vedio call how to make a vedio call in this mobile 

    Hi,
    see: ADF Mobile: Start a phone call from app?
    Frank

  • How to make a silhouette from a portrait (photo) and-

    How do I make a silhouette from a portrait?
    And how do I make the background transparent?

    Do you mean that I send you the portrait?
    Chabæna
    26 apr 2014 kl. 12:31 skrev c.pfaffenbichler <[email protected]>:
    Re: How to make a silhouette from a portrait (photo) and…
    created by c.pfaffenbichler in Photoshop General Discussion - View the full discussion
    How do I make a silhouette from a portrait?
    Ah, but wouldn’t it be ever so much easier to explain if you actually provided (a lores of) the image in question?
    And how do I make the background transparent?
    Preferably with a Layer Mask and then saving in the appropriate file format (psd or png24 for example support transparency).
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/6332417#6332417
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/6332417#6332417
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/6332417#6332417. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Photoshop General Discussion at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • How to make a PWM period of 20 ms and a pulse duration 0,8-2,0 ms

    Hi
    How to make a PWM period of 20 ms and a pulse duration 0,8-2,0 ms. deskret pulse length 0.01 ms. for MCB2300. Are there examples of such implementation?
    thanks

    Sergiv,
    I see you as having two options (if you want finer resolution):
    1) Lower the period of the PWM (such that the percentage values would be of finer resolution with regards to the overall PWM period).
    2) Alter the duty cycle of the PWM with an Inline C node.
    From what I understand, LabVIEW simply calls into the PWM driver distributed by Keil (for the MCB2300).  You can call into the PWM driver directly and/or change register values on the chip if you want in order to do whatever you want.  Both would require you to look through/program in C code.
    Kevin S.
    Applications Engineer
    National Instruments

  • How to make an openfiledialog? (browse a file and put it in a parameter)

    How to make an openfiledialog? (browse a file and put it in a parameter)
    Best Regards

    hi,
    check the code  below:
    FORM sub_gui_download.
    * Define local variables
      DATA:
        lo_fullpath       TYPE string,
        lo_filename       TYPE string,
        lo_path           TYPE string,
        lo_user_action    TYPE i,
        lo_encoding       TYPE abap_encoding.
    * Define local constants
      CONSTANTS:
        lc_encoding(1) TYPE c VALUE 'X',
        lc_directory TYPE string VALUE 'D:',
        lc_filetype TYPE char10 VALUE 'DAT',
        lc_separator TYPE char01 VALUE 'X',
        lc_blank TYPE char01 VALUE ''.
    * Call method to create dynamic save_path and save_format
      CALL METHOD cl_gui_frontend_services=>file_save_dialog
        EXPORTING
          with_encoding        = lc_encoding
          initial_directory    = lc_directory
        CHANGING
          filename             = lo_filename
          path                 = lo_path
          fullpath             = lo_fullpath
          user_action          = lo_user_action
          file_encoding        = lo_encoding
        EXCEPTIONS
          cntl_error           = 1
          error_no_gui         = 2
          not_supported_by_gui = 3
          OTHERS               = 4.
      IF sy-subrc <> 0.
        EXIT.
      ENDIF.
    * Check user_action
      IF lo_user_action <> cl_gui_frontend_services=>action_ok.
        EXIT.
      ELSE.
    *   If user_action equals to action_ok, call function module to download datas
    *   using download table i_dwn_tab
        CALL FUNCTION 'GUI_DOWNLOAD'
          EXPORTING
            filename                = lo_fullpath
            filetype                = lc_filetype
            write_field_separator   = lc_separator
            trunc_trailing_blanks   = lc_blank
          TABLES
            data_tab                = i_dwn_tab
          EXCEPTIONS
            file_write_error        = 1
            no_batch                = 2
            gui_refuse_filetransfer = 3
            invalid_type            = 4
            no_authority            = 5
            unknown_error           = 6
            header_not_allowed      = 7
            separator_not_allowed   = 8
            filesize_not_allowed    = 9
            header_too_long         = 10
            dp_error_create         = 11
            dp_error_send           = 12
            dp_error_write          = 13
            unknown_dp_error        = 14
            access_denied           = 15
            dp_out_of_memory        = 16
            disk_full               = 17
            dp_timeout              = 18
            file_not_found          = 19
            dataprovider_exception  = 20
            control_flush_error     = 21
            OTHERS                  = 22.
        IF sy-subrc <> 0.
          MESSAGE i007.
        ENDIF.
      ENDIF.
    ENDFORM.    

  • How to make an effect of a glass breaking and fall into pieces?

    How to make an effect of a glass breaking and fall into pieces?
    I want to make an effect where there's a guy hitting a wall and the wall falls into pieces...Please help!! I can make the guy in green screen but its the effect of the wall breaking that I want to know how to make in motion. Hope anyone can help

    Search is your friend:
    http://discussions.apple.com/search.jspa?threadID=&q=shattering&objID=f656&dateR ange=all&numResults=30
    Patrick

  • How can I only justify in the mobile and tablet view and justify and indent in the desktop view?

    I need to have the text to appear in the mobile and tablet view 100% wide.  I need the same text indented by 200px on both side in the desktop view.

    Great! You're welcome.
    Lynda.com has excellent tutorials (video walkthroughs, exercise files, etc to complement it) that will get you going in no time. It is usually a paid subscription but it's definitely worth every penny.
    Here are some basics that I'd recommend for you:
    Web Foundation - Learn Web Foundations with Video Courses and Tutorials from lynda.com
    Web Development - Learn Web Development with Video Courses and Tutorials from lynda.com
    CSS - CSS Video Courses and Tutorials from lynda.com
    Dreamweaver - Dreamweaver Video Courses and Tutorials from lynda.com
    If you get the basics right (1,2 & 3) DW should be very easy to follow and so would any other authoring software. End of the day, DW is only an application to author with and not a language/ code in itself - it's on the last of my list.
    Good luck and happy learning!

  • How do I add a mobile and tablet site created in Adobe Muse to an existing website?

    Hi I have created a mobile and tablet version of an existing site in Adobe Muse and would like to add these versions without affecting the original site! is this possible?

    Are you planning to have separate URLs for desktops, tablets and mobile devices?  That seems like a logistic nightmare to maintain.
    Why haven't you re-built your desktop site with FluidGrid Layouts or CSS Media Queries in DW?  One site that works in all devices makes more sense.
    Example with FluidGrid Layout (re-size viewport):
    http://alt-web.com/FluidGrid/Fluid2.html
    Introduction to CSS Media Queries
    http://www.adobe.com/devnet/dreamweaver/articles/introducing-media-queries.html
    CS6 Fluid Grid Layouts (6 min video)
    http://tv.adobe.com/watch/digital-design-cs6/creating-adaptive-designs-using-fluid-grid-la youts-in-dreamweaver-cs6/
    Nancy O.

  • How to create an online fillable form for mobile devices, tablets and smartphones.

    How can I create "online fillable forms" for Mobile devices, tablets and smarphones?
    I already created an "online fillable form" with Adobe Acrobat XI Pro for PCs and MACs but this form can not be filled using mobile devices, it can only be downloaded.
    Thanks.

    Hi George,
    I gather from your reply that I won't be able to create "online fillable forms" for Mobile devices with Adobe Acrobat XI Pro. Correct? 
    If Adobe does not have another software similar to Adobe Acrobat XI Pro, would you please suggest me any other means of creating "online fillable forms" for Mobile devices? 
    Would you think that an HTML developed form would be a fair substitute for the PDF fillable forms that I use for PCs and MACs?
    Thanks,
    Alvaro

  • How to make & edit multiple query report

    hi,
    how to make multiple query report & i have an existing multiple query report when i edit it all the structure gets disturbed whenever i want to add or delete any column from an query.
    how to do this ?
    txs

    Perhaps you have "Flex Mode" selected in the Layout Editor? It's the button next to the padlock button.
    Message was edited by:
    Dave Hemming
    Also PS: Vaguest. Question. Ever.

  • How to make editable the colums of table control in the PBO

    Hello Experts!
    I`m using the table control in dynpro, and i want to make editable some colums depending of some values.
    How can i do that?
    Thanks!

    Hi
    U need to change the screen attributes of colunm by statament LOOP AT SCREEN/ENDLOOP into the loop of table control in PBO:
    PROCESS PBO.
       LOOP AT ITAB ......
            MODULE LOOP_SCREEN_TC.
      ENDLOOP.
    MODULE LOOP_SCREEN_TC.
      IF ITAB-FIELD1 = .........
         LOOP AT SCREEN.
            IF SCREEN-NAME = 'ITAB-FIELD2'.
               SCREEN-INPUT = 0.
               MODIFY SCREEN.
            ENDIF.
        ENDLOOP.
      ENDIF.
    ENDMODULE.
    Max

Maybe you are looking for

  • Error while running helloworld example

    Hi Every one! I am getting the following error while running the helloworld page....can some one help me please.... [Starting OC4J using the following ports: HTTP=8988, RMI=23891, JMS=9227.] G:\OAF1\jdevhome\jdev\system\oracle.j2ee.10.1.3.41.57\embed

  • Disabling auto sort of rows for Pivot Tables in BI Publisher

    is there a way to avoid the Pivot table in BI Publisher from sorting your data and just display the rows in the order retured from the data model ? By default it is sorting the data in asc order. Thanks !

  • Issue at Posting to FICO

    Hi Iam new to SAP-HR, I had an issue at posting to FICO. I had some wage types like basic, HRA,convayence, PT,ESI,PF ...... i want to create Symbolic account for these. I want to know what symbolic is related to what? i,e for basic what symbolic acco

  • How can I keep songs in proper album sequence?

    Please help an old AOR geezer. I've got "track numbers" checked in my Edit>view options menu, but when I rip a CD to my itunes v4.8, the songs come out scrambled, usually to bad effect. How to listen to stuff in the right order? I know there's got to

  • Problem in fetching data from 0025IT

    Hello... Here we are working on One Page Profile and when i had made enteries in dev server  for employee first aparaisal in infotype 25 , it has shown one record correctly.But in the table HRP1001 , it created two records with same  dates and rating