VC Drag and Drop in layout tab

Hi,
I'm fairly new to VC 7.0 and am trying to lay out my model to find that in the layout tab, I am unable to drag and drop items like some of the exercises I am doing instruct me to.  I've searched a bit on the forum here and it doesn't seem to be a common occurance so I'm wondering if I'm doing something wrong?
VC level:  700.17.0.1
Thanks!

Hi,
Find the below documents to learn Visual Composer 7.0
https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/63f2052e-0c01-0010-b9a2-e1f7457a7fbe
https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/9326072e-0c01-0010-bc97-f72e93338101
Regards
Basheer

Similar Messages

  • Drag and drop from pages tab

    I am trying to drag a page from acrobat reader into a C# application.  The only information i need from acrobat is the filename and the page number or numbers.  Is this information accessible? Do i need to cast the dataObject i am being sent to a different type? Has anyone had success with drag and drop from inside accrobat to another application?
    Any help at all would be very appreciated.

    Reader does NOT support dragging from the pages panel.
    Adobe Acrobat, however, does.  But the only supported destinations for dragging from the pages tab are another Acrobat window or the Finder/Explorer.  Any other destination is untested and unsupported.

  • How to Drag and Drop from Active tab to Inactive Tab in Elements 13?

    In previous versions of Elements, I was able to drag a layer from and active tab up to an inactive tab, which then made the inactive tab active, with the new layer.  In Elements 13, that doesn't work, and I have to open the Photo Bin, and drag it down there .  I am just wondering if I need to adjust a setting, or if this feature no longer exists in Elements 13?

    Yes.  I have Windows 8.1.  Using the Move Tool, I drag the desired object to the other file.  Pre Elements 13, it easily worked up to the inactive tab, and switched it to active.  Now I have to drag it to the Photo Bin.  It still works, just no as simply since I have to open the Photo Bin.  Not a big problem, just annoying since my habits still want me to drag up to the inactive tab, not down to the Photo Bin.  Resetting the preferences didn't change anything. 

  • APEX Bug - Drag and Drop

    Hey all
    I've discovered a rather annoying bug in APEX's drag and drop item layout.
    I'm designing a form and putting mainly text fields down in a column.
    Every now and then one of these text fields needs to have a text item (display only) beside it.
    The problem is, say if I add 2 display only items beside 2 different text fields, it "forgets" about one of these items when I press the Next button.
    It just comes up with the next screen - but it's missing one of the display only items!
    Then, seemingly at random, the missing item will (after much editing of the item layout) just appear again at the top of the item list! (when it was positioned somewhere completely different before).
    I've managed to reproduce this multiple times.
    Makes creating and editing pages with items a very annoying chore!

    Oh, ok.
    Well, it happened to me every time on 2 separate item regions.
    I'll just go and try to do it again... See if it still 'works' :)
    ok well it's still doing it...
    I just added 2 display only items to my existing item list, and NONE of them were actually added.
    Here was my display list:
    Region: Collection Details
    186 P2_COLL_DAYS Checkbox
    193 P2_COLL_TIME Text Field
    195 P2_ALLOW_MULTI_TRANS Checkbox
    196 P2_ACC_COUPON_TYPES Text Field
    198 P2_COUPON_OPTIONS Text Field
    200 P2_MESSAGE_1 Text Field
    201 P2_MESSAGE_2 Text Field
    202 P2_MESSAGE_3 Text Field
    203 P2_MESSAGE_4 Text Field
    204 P2_MESSAGE_5 Text Field
    205 P2_MESSAGE_6 Text Field
    22 Itemsand I tried to add a display only item after both of these:
    196 P2_ACC_COUPON_TYPES Text Field
    198 P2_COUPON_OPTIONS Text Fieldname: "P2_ACC_COUPON_TYPES_TEXT"
    text: "[e.g. 1,2,3]"
    and
    name: "P2_COUPON_OPTIONS_TEXT"
    text: "[e.g. 5 or 5,10,15]"
    And neither of them showed up on the next page (where you confirm and adjust the items).
    I'm using Internet Explorer 7.

  • How to drag and drop tab nodes between tab panes

    I'm working on example from this tutorial( Drag-and-Drop Feature in JavaFX Applications | JavaFX 2 Tutorials and Documentation ). Based on the tutorial I want to drag tabs between two tabs. So far I managed to create this code but I need some help in order to finish the code.
    Source
    tabPane = new TabPane();
    Tab tabA = new Tab();
       Label tabALabel = new Label("Main Component");
    tabPane.setOnDragDetected(new EventHandler<MouseEvent>()
                @Override
                public void handle(MouseEvent event)
                    /* drag was detected, start drag-and-drop gesture*/
                    System.out.println("onDragDetected");
                    /* allow any transfer mode */
                    Dragboard db = tabPane.startDragAndDrop(TransferMode.ANY);
                    /* put a string on dragboard */
                    ClipboardContent content = new ClipboardContent();
                    content.put(DataFormat.PLAIN_TEXT, tabPane);
                    db.setContent(content);
                    event.consume();
    What is the proper way to insert the content of the tab as object? Into the tutorial simple text is transferred. How I must modify this line content.put(DataFormat.PLAIN_TEXT, tabPane);?
    And what is the proper way to insert the tab after I drag the tab:
    Destination
    tabPane.setOnDragDropped(new EventHandler<DragEvent>()
                @Override
                public void handle(DragEvent event)
                    /* data dropped */
                    /* if there is a string data on dragboard, read it and use it */
                    Dragboard db = event.getDragboard();
                    boolean success = false;
                    if (db.hasString())
                        //tabPane.setText(db.getString());
                        Tab tabC = new Tab();
                        tabPane.getTabs().add(tabC);
                        success = true;
                    /* let the source know whether the string was successfully
                     * transferred and used */
                    event.setDropCompleted(success);
                    event.consume();
    I suppose that this transfer can be accomplished?
    Ref javafx 2 - How to drag and drop tab nodes between tab panes - Stack Overflow

    I would use a graphic (instead of text) for the Tabs and call setOnDragDetected on that graphic. That way you know which tab is being dragged. There's no nice way to put the Tab itself into the dragboard as it's not serializable (see https://javafx-jira.kenai.com/browse/RT-29082), so you probably just want to store the tab currently being dragged in a property.
    Here's a quick example; it just adds the tab to the end of the current tabs in the dropped pane. If you wanted to insert it into the nearest location to the actual drop you could probably iterate through the tabs and figure the coordinates of each tab's graphic, or something.
    import java.util.Random;
    import javafx.application.Application;
    import javafx.beans.property.ObjectProperty;
    import javafx.beans.property.SimpleObjectProperty;
    import javafx.event.EventHandler;
    import javafx.scene.Scene;
    import javafx.scene.control.Label;
    import javafx.scene.control.Tab;
    import javafx.scene.control.TabPane;
    import javafx.scene.input.ClipboardContent;
    import javafx.scene.input.DragEvent;
    import javafx.scene.input.Dragboard;
    import javafx.scene.input.MouseEvent;
    import javafx.scene.input.TransferMode;
    import javafx.scene.layout.StackPane;
    import javafx.scene.layout.VBox;
    import javafx.stage.Stage;
    public class DraggingTabPane extends Application {
      private static final String TAB_DRAG_KEY = "tab" ;
      private ObjectProperty<Tab> draggingTab ;
    @Override
      public void start(Stage primaryStage) {
      draggingTab = new SimpleObjectProperty<>();
      TabPane tabPane1 = createTabPane();
      TabPane tabPane2 = createTabPane();
      VBox root = new VBox(10);
      root.getChildren().addAll(tabPane1, tabPane2);
      final Random rng = new Random();
      for (int i=1; i<=8; i++) {
        final Tab tab = createTab("Tab "+i);
        final StackPane pane = new StackPane();
          int red = rng.nextInt(256);
          int green = rng.nextInt(256);
          int blue = rng.nextInt(256);
        String style = String.format("-fx-background-color: rgb(%d, %d, %d);", red, green, blue);
        pane.setStyle(style);
        final Label label = new Label("This is tab "+i);
        label.setStyle(String.format("-fx-text-fill: rgb(%d, %d, %d);", 256-red, 256-green, 256-blue));
        pane.getChildren().add(label);
        pane.setMinWidth(600);
        pane.setMinHeight(250);
        tab.setContent(pane);
        if (i<=4) {
          tabPane1.getTabs().add(tab);
        } else {
          tabPane2.getTabs().add(tab);
      primaryStage.setScene(new Scene(root, 600, 600));
      primaryStage.show();
      public static void main(String[] args) {
      launch(args);
      private TabPane createTabPane() {
        final TabPane tabPane = new TabPane();
        tabPane.setOnDragOver(new EventHandler<DragEvent>() {
          @Override
          public void handle(DragEvent event) {
            final Dragboard dragboard = event.getDragboard();
            if (dragboard.hasString()
                && TAB_DRAG_KEY.equals(dragboard.getString())
                && draggingTab.get() != null
                && draggingTab.get().getTabPane() != tabPane) {
              event.acceptTransferModes(TransferMode.MOVE);
              event.consume();
        tabPane.setOnDragDropped(new EventHandler<DragEvent>() {
          @Override
          public void handle(DragEvent event) {
            final Dragboard dragboard = event.getDragboard();
            if (dragboard.hasString()
                && TAB_DRAG_KEY.equals(dragboard.getString())
                && draggingTab.get() != null
                && draggingTab.get().getTabPane() != tabPane) {
              final Tab tab = draggingTab.get();
              tab.getTabPane().getTabs().remove(tab);
              tabPane.getTabs().add(tab);
              event.setDropCompleted(true);
              draggingTab.set(null);
              event.consume();
        return tabPane ;
      private Tab createTab(String text) {
        final Tab tab = new Tab();
        final Label label = new Label(text);
        tab.setGraphic(label);
        label.setOnDragDetected(new EventHandler<MouseEvent>() {
          @Override
          public void handle(MouseEvent event) {
            Dragboard dragboard = label.startDragAndDrop(TransferMode.MOVE);
            ClipboardContent clipboardContent = new ClipboardContent();
            clipboardContent.putString(TAB_DRAG_KEY);
            dragboard.setContent(clipboardContent);
            draggingTab.set(tab);
            event.consume();
        return tab ;

  • Can i make a book in iPhoto without using any of the built in layout templates, which are too limiting when i have already cropped my pictures to show just what I want. Ideally I just want to drag and drop and arrange and size the pictures myself

    Can i make a book in iPhoto without using any of the built in layout templates, which are too limiting when i have already cropped my pictures to show just what I want. Ideally I just want to drag and drop and arrange and size the pictures myself

    If you have Pages you can create customs pages for your book as TD suggested. If you have Pages from iWork 09 or 11 this app will add 80 or so additional frames to those offered:  Frames and Strokes Installer. Don't use it on the latest Pages version, however.
    This tutorial shows how to create a custom page with the theme's background: iP11 - Creating a Custom Page, with the Theme's Background for an iPhoto Book.  Once the page is complete to get it into iPhoto as a jpeg file follow these steps:
    Here's how to get any file into iPhoto as a jpeg file:
    1 - open the file in any application that will open it.
    2 - type Command+P to start the print process.
    3  - click on the PDF button and select "Save PDF to iPhoto".
    NOTE:  If you don't have any of those options go to Toad's Cellar and download these two files:
    Save PDF to iPhoto 200 DPI.workflow.zip
    Save PDF to iPhoto 300 DPI.workflow.zip
    Unzip the files and place in the HD/Library/PDF Services folder and reboot.
    4 - select either of the files above (300 dip is used for photos to be included in a book that will be ordered).
    5 - in the window that comes up enter an album name or select an existing album and hit the Continue button.
    That will create a 200 or 300 dpi jpeg file of the item being printed and import it into iPhoto. For books to be printed choose 300 dpi.

  • Drag and Drop feature in Layout

    Hi,
    I am new to Webdynpro ABAP.
    I placed the controls like button , text and label on the layout.
    But the issue is, I need to arrange them in order but when i drag and drop on the layout, the controls do not move at all.
    Whichever controls I choose and  place on the layout, all of them are aligning in a Top horizontal fashion.
    Pls help as it is hindering me from moving forward to create some apps.
    Regards,
    Vinay

    hi ,
    place your UIs under a transparent container or a group
    and place ur UIs inside it , right click on the ui and choose to move it up or down
    u  can use the Group UI element to group a series of UI elements under the same title.
    Therefore, it acts as a container.
    Always use the TransparentContainer UI element for nested groups.
    if u r using matrix layout for ur transparent container or group , u can use matrix head data to place UIs in start of line
    u  can use the TransparentContainer element in two different ways:
    i) As a layout container (property isLayoutContainer=true)
    In this case, you use the element to design the layout of other UI elements.
    ii) As a grouping container (property isLayoutContainer=false)
    In this case, you use the element to group other UI elements.
    regards,
    amit

  • Drag and Drop to tabs no longer works in IE11

    I just upgraded to Windows 8.1 with IE11, and I can no longer drag and drop links onto existing tabs. Why was this removed? That was one of the most useful features of tabbed browsing.

    Hi,
    Do you get any error message/code?
    Based on your description, I would like to suggest you try the following to check the issue:
    1. Run Internet Explorer Performance Troubleshooter.
    The Internet Explorer Performance Troubleshooter is an automated tool which will check for any performance issues which are common with the Internet Explorer on the computer and provides the details on how to fix them. Follow these steps and run the troubleshooter.
    a. Press “Windows Logo” + “W” keys from the keyboard.
    b. Type “Troubleshooting” in the search bar and press “Enter”.
    c. In the “Troubleshooting” window, click on “View All” on the left pane.
    d. Click on “Internet Explorer Performance”.
    e. Click on “Advanced” and then click on “Run as Administrator”.
    f. Click “Next” and follow the on-screen instructions to complete the troubleshooting process.
    2. Run IE with no add-ons. Click Start -> All Programs -> Accessories -> System Tools -> Internet Explorer (with no add-ons). 
    3. Reset Internet Explorer settings.
    http://support.microsoft.com/kb/923737
    Please understand that reset Internet Explorer to its default configuration. This step will also disable any add-ons, plug-ins, or toolbars that are installed.
    4. Try to reinstall the IE 11 for a test.
    How to reinstall or repair Internet Explorer in Windows 7, Windows Vista, and Windows XP
    http://support.microsoft.com/kb/318378/en-us
    If the issue still occurs, you may boot the computer in safe mode and check if that helps.
    Advanced startup options (including safe mode): 
    http://windows.microsoft.com/en-US/windows7/Advanced-startup-options-including-safe-mode
    Regards,
    Blair Deng
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • I have 9.0.1 on 2 pc's, both xp sp3. On 1 the 'open new tab' button is visible, on the other, the 'open new tab' button is not even available in the 'customize toolbar' menu for dragging and dropping. Why?

    I used the same installation file, but on 1 pc, the 'open new tab' button is available in the 'customize toolbar' menu and can be dragged and dropped onto the navigation bar. On the other pc, the 'open new tab' button/icon is not even available for dragging and dropping. I uninstalled firefox completely, including settings and preferences, then reinstalled, but that did not correct the missing button.

    Hi,
    Please try '''Restore Default Set''' in the '''Customize...''' window. If it's still not visible, one reason could be that the button is already placed on the toolbar but may be hidden behind another icon or toolbar.
    Useful links:
    [https://support.mozilla.com/en-US/kb/Options%20window All about Tools > Options]
    [http://kb.mozillazine.org/About:config Going beyond Tools > Options - about:config]
    [http://kb.mozillazine.org/About:config_entries about:config Entries]
    [https://support.mozilla.com/en-US/kb/Page%20Info%20window Page Info] Tools (Alt + T) > Page Info, Right-click > View Page Info
    [https://support.mozilla.com/en-US/kb/Keyboard%20shortcuts Keyboard Shortcuts]
    [https://support.mozilla.com/en-US/kb/Viewing%20video%20in%20Firefox%20without%20a%20plugin Viewing Video without Plugins]
    [http://kb.mozillazine.org/Profile_folder_-_Firefox Firefox Profile Folder & Files]
    [https://developer.mozilla.org/en/Command_Line_Options#Browser Firefox Commands]
    [https://support.mozilla.com/en-US/kb/Basic%20Troubleshooting Basic Troubleshooting]
    [https://support.mozilla.com/en-US/kb/common-questions-after-upgrading-firefox-36 After Upgrading]
    [https://support.mozilla.com/en-US/kb/Safe%20Mode Safe Mode]
    [http://kb.mozillazine.org/Problematic_extensions Problematic Extensions]
    [https://support.mozilla.com/en-US/kb/Troubleshooting%20extensions%20and%20themes Troubleshooting Extensions and Themes]
    [https://support.mozilla.com/en-US/kb/Troubleshooting%20plugins Troubleshooting Plugins]
    [http://kb.mozillazine.org/Testing_plugins Testing Plugins]

  • Drag and drop tabs not working

    Dragging and dropping tabs no longer works. I cannot drag a tab out to a new window or reorder the tabs. This used to work and is a very nice feature. Reordering bookmarks by dragging them around also appears to be broken.
    Disabling plugins or resetting Firefox did not help.

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • GNOME 3 : "drag-and-drop" + "Alt-Tab" not working

    Hello,
    In GNOME 3.2.1 with Mutter 3.2.1 (current ones in Arch), it is supossedly fixed the following "bug":
    Mutter 3.2.1 changelog:
    * Allow keyboard window switching (alt-Tab) during drag-and-drop [Matthias, #660457]
    But I can't make it working.
    As test, I open a folder (maximized) and vlc (background). I drag a movie file with left click mouse and pressing Alt-Tab makes nothing.
    In fact, when I press Alt the file icon changes to a question mark "?"...
    Has anyone been able to make it work?
    Thanks in advance,
      Franz
    Last edited by franzrogar (2011-11-01 08:48:40)

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of the file system or of certain system caches.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards, if applicable. Start up in safe mode and log in to the account with the problem. You must hold down the shift key twice: once when you turn on the computer, and again when you log in.
    Note: If FileVault is enabled, or if a firmware password is set, or if the startup volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to start up and run than normal, with limited graphics performance, and some things won’t work at all, including sound output and Wi-Fi on certain models. The next normal startup may also be somewhat slow.
    The login screen appears even if you usually login automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, restart as usual (not in safe mode) and verify that you still have the problem. Post the results of the test.

  • Drag and Drop Layout feature for regions

    Wondering if there is a drag and drop layout feature for regions in 3.1.2 (or below that I might have missed) or if there are plans for it in future releases. I know that this feature is available for items in a region but interested for the many regions I have on a page. I think it would be a nice feature to have instead of having to go into a page template to get the layout I want.
    Thoughts?
    Thanks,
    Russ

    Look at the following link:
    Drag and drop - like the builder?

  • "drag and drop layout missing in 4.2"

    The drag and drop layout is missing in 4.2
    So we have no GUI to arrange regions or items in a region...
    So I'm not sure if going to 4.2 is a step forward at all?
    Apex needs to be more drag and drop configurable not less surely ?

    Send Apple feedback. They won't answer, but at least will know there is a problem. If enough people send feedback, it may get the problem solved sooner.
    Feedback
    Or you can use your Apple ID to register with this site and go the Apple BugReporter. Supposedly you will get an answer if you submit feedback.
    Feedback via Apple Developer

  • How to disable drag-and-drop tabs to search bar?

    I always have a lot of tabs open in Firefox, and oftentimes I move tabs around, whether intentionally or habitually (and accidentally). The problem is that a lot of times the tab is dragged on/near the search bar and this causes Firefox to respond by copying the tab's address to the search and start searching.
    I would like to disable one or both of these. I never use this, especially since whatever address I'm at is already found and if I actually wanted to search for it then I would just copy it and search myself. I want to disable the auto search and if possible, also disable copying the address.

    ''guigs2 [[#answer-714993|said]]''
    <blockquote>
    It is possible for window creation, note this work around: [http://www.ghacks.net/2012/12/04/firefox-disable-tab-drag-and-drop-window-creation/] However I did not find one for general dragging/moving tabs.
    Another add on that provided more customization tricks is known as:
    "[https://addons.mozilla.org/en-US/firefox/addon/tab-mix-plus/?src=search]"
    Did this help?
    </blockquote>
    No; as I said, my problem is tabs and the search bar. I drag tabs into new windows practically everyday and the other doesn't seem to have anything related to this either. I only read the description and looked at the pictures and etc, so I did not download it to give it a thorough review prior to declining it as it doesn't seem at all related.
    Curious:
    Does that ghacks thing also disable the tab-search thing in addition to disabling new windows, or did you just post a completely different tab-drag-drop related issue?
    (not rhetorical or sarcastic, I'm actually asking)

  • How do you drag and drop samples in the ex24 on pro x now that the edit button next to the option tab is no longer there?

    how do you drag and drop samples in the ex24 on pro x now that the edit button next to the option tab is no longer there?

    Well, it's aggravating seeing foolish limitations to the program. Having some experience in education, offering a professional program in a limited version is condescending to the user and has never been proven to help students move forward. Plus, some of the choices made to keep Logic simple are confounding... "removing the edit button on the EXS24"?  That's silly!  

Maybe you are looking for

  • Issues in SAP(Idoc)-XI-File scenario

    Dear All, I am working on SAP(Idoc)-XI-File scenario. But in the Receiver agreement i am not able to see the idoc in order to specify some conditions there.  Please suggest if I have to do any settings in order to specify some conditions in the idoc.

  • Photo Storage Question

    Hi:  When I take a photo with my C3 and designate it be stored on the microSD Disk is the photo also stored temporarily on the phone's internal memory? Thanks, Chato Solved! Go to Solution.

  • Audio dropouts

    I have a wireless music player (Cambridge Audio Minx) on my home express wireless network.  I play internet radio built into the player.  My problem is the radio drops out regularly and needs to be restarted at the player. Cambridge say home network

  • Change Finder Places User name

    Hello all When I click on Finder on the Dock, it always opens to Places into my short name folder. Is there a way to change the folder to open to another location?

  • Changing isp and email address

    I am moving at the end of March, 2014, and will have a new ISP and EMAIL address.  Will this have any impact on the current account info registered to my IPAD2 and my ability to access the App store and ITUNES.