Is it possible to save customisations you've made to a widget?

I've just spent about 20minutes customising the style of the tabs widget. I want to use this custom version of the tabs on multiple pages of my site.
I'm guessing that when I drag out the widget again on another page, I will have to customise the default style all over again.
Is there anyway of saving the style changes I've made so I don't need to do it each time?

Yes you can...
Using the "Graphic Styles" panel will allow you to save the formatted elements in your tab widgets.
When saving a style, clicking the page icon at the bottom right of the Graphics Styles panel, (see attachment), a new text label will be added
named "Style" rename it to reflect the attributes you just added.
Using the "Character and or Paragraph Styles" panel will allow you to save the text formatting.
Note: you will have to select each individual section of your widget, i.e. the tab/the backgound/text...etc and save each as a style, you will not be able to choose the widget as a whole.

Similar Messages

  • Is it possible to hide/show the "Do you want to save changes you have made?" msg

    Hi,
    Is it possible to hide and show the Oracle message "Do you want to save changes you have made?"
    Thank You

    Not really.
    You have to use commit_form to commit the changes or a
    rollback_form to rollback just before exit_form, clear_form,
    or clear_block.
    Or, use clear_form(no_validate), clear_block(no_validate).
    It might be good to check wether there is some change in the
    data and show an alert in your own language asking the user in
    his/her own language wether he/she wants to commit the changes
    or not.

  • Customizing default message "Do you want to save changes you have made?"

    Hi all
    Can I customize the default message generated by oracle forms "Do you want to save changes you have made?"
    I want to change its title, message, alert style, button labels, and visual attribute. And functionality.
    Thanks
    Asad.

    Of course ON-MESSAGE will not work. Use the trigger on your Exit_Form button. Then check the form or block or record status (depending on your design) and do appropriate coding, something like this:
    IF :System.Form_Status = 'CHANGED' THEN
    retCode := Show_Alert('MY_EXIT_ALERT');
    if retCode = ALERT_BUTTON2 THEN
    Exit_Form(NO_VALIDATE);
    elsif retCode = ALERT_BUTTON1 then
    Commit_Form;
    else
    Whathever_It_Is;
    end if;
    end if;
    If you have master-detail block and u're recieving the message when detail is changed but u want to scroll master records - write me a mail to tell u which trigger to use. It is not that I don't want to share info - just can't recall right now.

  • Do you want to save changes you have made

    hi guys,,
    I need ur help
    I ve a form which retrieve employee data,,
    there are 8 blocks in the form,,
    i created a when mouse click trigger to show a LOV
    declare
    a boolean;
    begin
    a:=show_lov('TEST');
    pc_execute; -- calling a procedure
    END;
    but it gives Do you want to save changes you have made?
    and I tried to suppress this by setting system message level = 25
    but no benifit,,
    And if I write :
    declare
    a boolean;
    begin
    a:=show_lov('TEST');
    GO_BLOCK('ORG_EMP_INCREMENT_HISTORY');
    pc_execute; -- calling a procedure
    END;
    the message will disappear but the query will not execute all blocks
    ANY suggestions
    Best Regards

    Al-Salmau Alikum We Rahamatu Allah We Barakatu...
    if u wanna getting ur total records of emp block then do this as an example ...
    FUNCTION query_count (p_block_name VARCHAR2) RETURN NUMBER
    IS
      cnt NUMBER;
    BEGIN
      GO_BLOCK(p_block_name);
      COUNT_QUERY;
      cnt := GET_BLOCK_PROPERTY(p_block_name, QUERY_HITS);
      IF FORM_SUCCESS THEN
        RETURN (cnt);
      ELSE
        MESSAGE('Error in getting Query Hits for block '||:SYSTEM.CURRENT_BLOCK);
        RAISE FORM_TRIGGER_FAILURE;
      END IF;
    END;and notice the result in the status bar...
    But if u wanna have data it's another issue...
    so u have to do for example...
    IF NOT Id_Null(blk_id) THEN 
        Set_Block_Property('block_name',DEFAULT_WHERE,'emp_id = ' || emp_id);  
       Execute_query;  
       ELSE       Message('You have a problem!');     
    RAISE Form_Trigger_Failure;  
    END IF; Hope this helps...
    Regards,
    Abdetu..

  • 'Do you want to save changes you have made' while closing the form

    Hi Everyone,
    I am working on Oracle Applications 11.5.10.2 version. I have created a new form as per the client requirement and registered with APPS. I met all the requirements, but when ever closing the form getting the error 'Do you want to save changes you have made' without entering or modifying records in he form.
    Please help in this regard, bit urgent.
    Thanks in Advance..
    Venky.

    Hi,
    You can suppress messages depending on their message level. For a full description and examples on this topic, please see the help in Forms Builder (press F1 in your Builder) and search for :system.message_level.
    or the other way would be.
    As you are using the copy command for moving the data from one block to the other block , the status of the block will be changed to "Modified".As per oracle standards when every the block status is modified it fire the meassage 'Do you want to save changes you have made' .
    To avoid the message you need to change status of each line to "Query" .Once you do this the block status automatically changes to "query" .Once it is in query mode when you try to close the form it will not pop-up the above message.
    To change the line status use POST command . To get help on this command you can use form builder help.
    Hope this serves your purpose.
    Let me know if you need any further clarification.
    Rgds,
    Naveen.

  • Adding "do you want to save change you have made" message.

    We developed and multy screen web applicaton using J dev 11.1.1.1 and ADF BC- ADF RC
    We want when a user go to other screen to ask him a question as "do you want to save change you have made"
    Otherwise if a an error occurs "source" screeen
    and user go "target" screen and want to commit change
    ADF try to validate all entities.
    And error mesages about source screens displaying on the target screen.
    it is very confusing situation fro users.
    Thanks.

    Thasnks alot.
    We implement http://kuba.zilp.pl/?id=681 method.
    but isCommitEnabled() method return FALSE every time.
    Do we need to do anything in app module side.
    protected Boolean isCommitEnabled(){
    return getApplicationModule().getTransaction().isDirty() ? Boolean.TRUE : Boolean.FALSE;
    we will try pedja's recommendation also...

  • HOW TO SUPPRESS "DO YOU WANT TO SAVE CHANGES YOU HAVE MADE"

    ORACLE APPS CUSTOM FORM
    WHENEVER I AM PRESSING CTRL+F11 AND SERACH ABOVE PROMPT IS COMING. HOW TO SUPPRESS THAT ONE.

    The message is occurring because the user (or your code) has changed something in the form. Forms needs to know what you want to do with the changes before it can continue.
    When you suppress this message, then when the user has changed something in the form, he won't be asked to save his changes. What do you plan to do then? If you silently discard his changes, he may not be happy with you. If you silently save his changes he may not be happy either. So let the user see the message and let him decide what to do.
    If your code is changing something in the form (not the user), then you need to find out what is being changed. Once you know, then you can fix it.

  • Do you want to save changes you have made? Message

    I have a form with 3 data blocks.
    Data block 1- master_blk
    data block 2- detail_blk1 (detail of the master block)
    data block 3- detail_blk2 (detail of DETAIL_BLK1)
    So its a 3 level parent child relationship. MASTER_BLK parent to DETAIL_BLK1 and DETAIL_BLK1 is parent to DETAIL_BLK2
    My problem is after i capture some data on DETAIL_BLK2 and try to navigate to another record on DETAIL_BLK1, i get a message asking me to save changes for me to continue. Is there a workaround to this problem where i can capture multiple records on DETAIL_BLK1 and corresponding child records on DETAIL_BLK2 and then save all the records at once?

    It is a default behaviour of the forms that whenever it detects a change in child blocks and you change its master, it would flush out the contents of detail block so that it can fetch the next set of child records for current master record. So in this process, it alerts to user to save or discard the changes made.
    See help for Coordination property of the relation defined.
    Here is a short help from Oracle Forms on Relation Coordination property.
    Whenever the current record in the master block changes at runtime (a coordination-causing event),
    Form Builder needs to populate the detail block with a new set of records. You can specify exactly how
    and when that population should occur by setting this property to one of three valid settings:
    Hope it helps!

  • Avoiding "Do you want to save changes you've made?" question

    Hello friends at www.oracle.com ,
    I have a program with a master block and detail block. While navigating at master block, not all detail block items are filled (some of them need to be verified at the moment of navigation, because data related to that detail block may vary during production).
    However, when I need to navigate to the next master block register, Oracle asks me if I want to save changes. This is annoying, because it disturbs navigation.
    How can I avoid such message to be displayed everytime I navigate to the next or previous item?
    Thanks for all answers, and best regards,
    Franklin Gongalves Jr.

    Try to put POST in the ON-CLEAR-DETAILS trigger.
    regards,
    Harm

  • How do you get firefox 4 to save tabs and windows and restore them? Don't say set preferences to open them on startup or use restore previous session under history; those do not work. Or is it no longer possible to save windows and tabs?

    Question
    How do you get firefox 4 to save tabs and windows and restore them? Don't say set preferences to open them on startup or use restore previous session under history; those do not work. Or is it no longer possible to save windows and tabs?

    '''IT'S A EASY AS IT SHOULD BE.'''
    This is essentially paulbruster's answer, but I've added the steps some might assume, but which aren't so obvious to those of us who are new at this, like me.
    This solution might ''appear'' to be long and complicated, but after you follow the directions once, you'll find it's quick, clean, and simple. Almost like they designed it this way.
    # If you haven't already, open a bunch of tabs on a few different subjects.
    # Click the List All Tabs button on the right side of the tab strip.
    # Select Tab Groups.
    # Create a few groups as described [http://support.mozilla.com/en-US/kb/what-are-tab-groups#w_how-do-i-create-a-tab-group here] , i.e. just drag them out of the main thumbnail group into the new groups they create.
    # Now click on any thumbnail in any new group, but not the original big default group you may have left some tabs in.
    #A regular Firefox window will open, but'' only the tabs in that group will be visible.'' You also now have the Tab Groups button in the tab strip.
    # Right click on any tab, and there it is: Bookmark All Tabs. Click on it in the list of options. Or you can hit Ctrl+Shift+D instead and go straight to the dialogue box from the tab without any clicks. But don't go looking for this familiar option anywhere else, 'cause it's not there.
    # Now pick an existing folder or create a new one just like you would have before and '''shlpam!''' there they are. New folders are supposed to end up in the Unsorted category all the way at the very bottom, but for some reason mine show up at the bottom of my last sorted category.
    # DO NOT CLICK THE UPPER-RIGHTMOST X to close this group of tabs. This will close ALL of your tabs in all groups, currently visible or not. At least it asks if you're sure first. Instead, click your new Tab Groups button to return to the Boxes 'O Thumbnails window, and click the X in the group box you just bookmarked.
    # Click on another thumbnail to repeat the process with another group, or click on a thumbnail in the big default box to return to the original FF window. You can also click the Tab Groups button at the upper right, or Ctrl+Shift+E, which will also get you ''into'' the Boxes 'O Nails window ''from'' FF.
    # So now when you reopen FF after shutdown, simply select your folder from your Bookmarks and Open All in Tabs. '''Just like paulbruster said. '''

  • Is it possible to save the apps/games that you've ...

    I've bought a couple of apps on the marketplace and was disappointed on how there's not much games for the Lumia 800.
    When I searched the internet for Windows Phone games, I was disappointed again to see that you need an Xbox LIVE account/app to download the best games on the Windows Phone Marketplace.
    Since I'm in the a country that Xbox LIVE is not available to, I want to create a new account and change my country to one that Xbox LIVE is available.
    I'm hesitant to do so because I have already bought a couple of games and would not want to delete money just like that.
    So is it possible to save apps/games that you've bought?
    Solved!
    Go to Solution.

    Purchased items are tied to your live account so if you use a different live account you will lose your purchases. I do not believe that Microsoft has an option to transfer purchases between two accounts but you may wish to contact Microsoft support to confirm that.

  • Is it possible to save a Photoshop project with multiple tabs (inducing images) for later use. Now, when I close Photoshop, it ask to save each tab separately and they are not staying in the project for later usage. Thanks in advance for you help.

    Is it possible to save a Photoshop project with multiple tabs (inducing images) for later use. Now, when I close Photoshop, it ask to save each tab separately and they are not staying in the project for later usage. Thanks in advance for you help.

    You should ask in Photoshop General Discussion
    The Cloud forum is not about using individual programs
    The Cloud forum is about the Cloud as a delivery & install process
    If you will start at the Forums Index https://forums.adobe.com/welcome
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says All communities) to open the drop down list and scroll

  • Is it possible to save files on to a cd? Do you need special software to do it?

    is it possible to save files on to a cd? Do you need special software to do it?
    Thanks ahead of time.

    Also... you can use another software like LiquidCD or Burn (both without cost)
    Liquid CD: http://www.macupdate.com/app/mac/19994/liquidcd
    Burn: http://www.macupdate.com/app/mac/21992/burn

  • HT201361 Is it possible to save the screenshot files to a different folder than desktop. How can I change the folder?

    Is it possible to save the screenshot files to a different folder than desktop (that is the default). How can I change the destination folder? Thank you, Sal

    To change the screenshot capture location to a new place on your Mac, first think of a location that would serve you properly. We like to place ours in a "Screenshot" folder located inside of the User's "Pictures" folder. To change the location to this new location, open the Terminal and enter the following command:
    defaults write com.apple.screencapture location /Users/[u]/Pictures/Screenshots/
    Replace "[u]" with the name of the user on your system. Once you have entered this command, let's restart the screen capture utility by restarting the SystemUIServer by entering the following command:
    killall SystemUIServer
    You can optionally log out and back in instead of entering this second command, thus restarting the SystemUIServer. Once restarted, all screen captures taken from here on out will end up in your /Pictures/Screenshots/ folder in the User's home folder on your Mac.

  • Is it possible to save / extract data from a MS SQL database 2008 using lookout 6.2?

    Is it possible to save / extract data from a MS SQL database 2008 using lookout 6.2?
      Now a days we are saving / extracting data in a excel spreadsheet, but we would like to do that using a database because it is better.

    You can use ODBC connection to work with SQL Server database.
    Use SQLExec object to execute the SQL statement. Here is a KB about the SQL statement.
    http://digital.ni.com/public.nsf/allkb/4ADEEA04CD24AE0B862565E20002A16F?OpenDocument
    To write data to spreadsheet is more straightforward because Lookout has built-in spreadsheet object. But you need to write SQL statement by yourself to interact with other database.
    To read the data back is the same way. Just use "select" SQL statement to query. You can use Datatable object to query.
    The "Data Source" can be "DSN = data source name;". The data source name is configured in Control Panel->Administrative Tools->Data Sources(ODBC).
    Ryan Shi
    National Instruments

Maybe you are looking for

  • Unable to install ICloud 4.0 on Win 8.1 PC. Get Windows Installer error message. But Windows installer works fine. Any solutions?

    I cannot install ICloud 4.0 on my Win8.1 PC because I get a recurring message that the Windows Installer has failed. The Windos installer works fine on other applications. So I suspect it is in the ICloud software. I have uninstalled Icloud 3.2 and d

  • Optimization PDF, make compatible with

    With Acrobat Pro, there is a command(order) (as we can make File, Register(Record) for example) in programming, to make the equivalent of: optimization PDF, Make compatible with and to choose a previous version of acrobat?

  • SAP BPC Certification

    Hi Experts, I am not sure if this is the right forum to discuss SAP BPC related queries and about certification for the same. If not please direct me to right forum. So here is my query regarding certification. Looked at SAP's curricula.. I can find

  • Question RAC load balance with app

    Hi there, How RAC help load balance the database if most of my applications connection use JDBC with specific IP or hostname. I'm using JDBC:thin client and not OCI. Is there configuration that allows the application without specify the hostname? If

  • Need a Script to find out the Grayed out agents in SCOM 2012

    Hi, I am trying to create a Dashboard view to list the Grayed Out servers in my SCOM 2012 environment by using the script below but it does not work as expected. Is there something wrong with this script or could you suggest me any other solution ple