JSF dataTable Drag & Drop issue

Hi, I'm developing a project with JSF where I have a dataTable made with 11 columns and unlimited rows. Each cell is populated by StaticText components. When I do a drag & drop (mousedown/mouseup) the StaticText text values between the drag point and the drop point are highlighted in blue. This is confusing to my users. Is there a way to turn-off the auto highlighting of a StaticText component. I don't see any property or style that will do this for me.
Your assistance is greatly appreciated.
Don

Write a Servlet Filter that will set the character encoding to utf-8. Here is the code.
public class UTFEncodingFilter implements Filter {
    public void init(FilterConfig arg0) throws ServletException {
    public void doFilter(ServletRequest request, ServletResponse response,
            FilterChain chain) throws IOException, ServletException {
        request.setCharacterEncoding("UTF-8");
        chain.doFilter(request, response);
    public void destroy() {
}

Similar Messages

  • ADG drag&drop issue

    Hey all,
    A strange problem i came across:
    I have a ADG which gets its data from an XML of 3 levels
    (<root><node><childnode/></node></root>)
    All works great but i have this strange issue:
    Once a drag&drop action is completed the first row of the
    ADG is automaticly selected.
    I tried using the dragComplete event and set the
    myADG.selectedIndex to null, or -1 but it doesnt do anything (the
    first row is still auto selected),
    I did find that if i use myADG.expandall() in the
    dragComplete event it does work, but it doesnt help me...
    So my question is: how can i make the ADG not to select any
    row after drag&drop action?
    Thanks

    onDragEnter(event) {
    if (fail) {
    event.preventDefault();
    DragManager.showFeedback(DM.NONE);
    return;
    }

  • Photo's for Mac - Drag/Drop issue

    I used to be able to drag and drop photos from iPhotos to Photobucket and it won't let me now since the upgrade to Photo's for Mac. Does anyone know why and is this just a bug that will be fixed in time?

    'Why' questions are ones that only Apple can answer.
    Try use the Media Browser.

  • KDE, ntpd and drag&drop issues

    Hi,
    I use KDE and when I install ntpd (the problem disappears when I remove it) and I want to drag something (like windows), the dragging procedure starts after 5-6 seconds, so I have to hold the mouse in the position for 5-6 seconds. (it also happens when I try to select text).
    Do you have encountered such a problem? Do you know how to fix the problem?
    -nwxxeh

    ewaller wrote:
    Weird. 
    Okay, so when kde and ntp are installed, and ntpd is running, where are your processors spending their time?  Use htop, or whatever that process monitor thing in KDE is called to find out what, if anything is sucking up processor cycles.  Let us know.
    Everything seems normal to me (htop).
    Also, it happens on XFCE and Gnome, so it may be X11 issue.
    Also, when I have ntp and timezone set to GMT+2, when I reboot my time sets to GMT+4 (not timezone, just time)...

  • List drag & drop issue

    hi,
    I have two lists - available items list and selected items
    list.
    I want to drag and drop only if some condition satisfies for
    which i have code like
    onDragEnter(event) {
    if (fail) {
    DragManager.showFeedback(DM.NONE);
    return;
    When dragged and dropped if the condition fails the selected
    item is moved back to the drag position
    but it leaves a copy of this item in the selected list as
    well.
    I tried the above code in onDragDrop(event) as well but has
    the same result.
    How can i avoid a copy of the selected item on fail
    condition.
    Please advice.
    Lucky

    onDragEnter(event) {
    if (fail) {
    event.preventDefault();
    DragManager.showFeedback(DM.NONE);
    return;
    }

  • New 16GB iTouch - cannot manually drag/drop songs

    I just purchased a new 16GB iTouch this past wkd from the Apple store. (As background I have previously owned the 1st generation and latest iPod nanos). After reading some of the posts, I decided not to upgrade the software to v3.0.
    I connected the iTouch to my computer, and it is recognized by iTunes. I unchecked any related "automatically sync" features and made sure that "manual sync" was turned on. However, I still cannot seem to "drag and drop" songs from my Music Library to my iTouch; I also cannot "drag and drop" any of my playlists. I have not even tried to bother with my photos. Also, please note, my iTunes works just fine with both of my iPods.
    Please help!!! Am I having this problem b/c I am not upgrading the iTouch software to the new version?

    roaminggnome - thanks for your quick reply. Apologies, I should have been more specific in my post. So that my songs would not be automatically synched, I had previously checked the box under devices/my ipod/summary/manually manage music" - I also had done so for both of my old iPods.
    I already downloaded the manual and read thru a bunch of older posts and I could not find any reference to this "drag/drop" issue.

  • Issue with Drag/Drop of multiple rows from ListView

    I am working on a sample application with 2 list views i.e. players and team, and implement drop and drop such that players can be dropped from one list view to the other. Everything is working as expected when there is single selection model is enabled on the source list view. However, if I enabled Multiple selection model and drag 2 or more rows from source list view to target list view, seeing the following exception after the drop is completed.
    Exception:
    java.lang.IllegalArgumentException: Only serializable objects or ByteBuffer can be used as data with data format [subListPlayers]
      at com.sun.javafx.tk.quantum.QuantumClipboard.putContent(QuantumClipboard.java:513)
      at javafx.scene.input.Clipboard.setContent(Clipboard.java:230)
    1) What should be the DataFormat used in order to be able to drag and drop multiple rows? Looks like we do not have for Object type, so I have created the following one which does not solve the problem.
       private DataFormat dataFormat = new DataFormat("subListPlayers");
    2) I have made changes to support serialization on the data object which also does not seem to solve the issue. Tried by implementing Serializable interface as well as by implementing Externalize interface.
    Can someone please guide if there is an easy way to implement this behavior?
    Code:
    public class Player
       private String name;
       public Player(String name)
          this.name = name;
       public String getName()
          return name;
       public void setName(String name)
          this.name = name;
       @Override
       public boolean equals(Object o)
          if (this == o) return true;
          if (o == null || getClass() != o.getClass()) return false;
          Player player = (Player) o;
          if (name != null ? !name.equals(player.name) : player.name != null) return false;
          return true;
       @Override
       public int hashCode()
          return name != null ? name.hashCode() : 0;
    public class JavaFXDnDApplication extends Application
       private static final ListView<Player> playersListView = new ListView<Player>();
       private static final ObservableList<Player> playersList = FXCollections.observableArrayList();
       private static final ListView<Player> teamListView = new ListView<Player>();
       private static final GridPane rootPane = new GridPane();
       private DataFormat dataFormat = new DataFormat("subListPlayers");
       public static void main(String[] args)
          launch(args);
       @Override
       public void start(Stage primaryStage)
          primaryStage.setTitle("Drag and Drop Application");
          initializeComponents();
          initializeListeners();
          buildGUI();
          populateData();
          primaryStage.setScene(new Scene(rootPane, 400, 325));
          primaryStage.show();
       private void initializeListeners()
          playersListView.setOnDragDetected(new EventHandler<MouseEvent>()
             @Override
             public void handle(MouseEvent event)
                System.out.println("setOnDragDetected");
                Dragboard dragBoard = playersListView.startDragAndDrop(TransferMode.MOVE);
                ClipboardContent content = new ClipboardContent();
    //            content.putString(playersListView.getSelectionModel().getSelectedItem().getName());
                content.put(dataFormat, playersListView.getSelectionModel().getSelectedItems());
                dragBoard.setContent(content);
          teamListView.setOnDragOver(new EventHandler<DragEvent>()
             @Override
             public void handle(DragEvent dragEvent)
                dragEvent.acceptTransferModes(TransferMode.MOVE);
          teamListView.setOnDragDropped(new EventHandler<DragEvent>()
             @Override
             public void handle(DragEvent dragEvent)
    //            String player = dragEvent.getDragboard().getString();
    //            ObservableList<Player> player = (ObservableList<Player>) dragEvent.getDragboard().getContent(dataFormat);
                String player = dragEvent.getDragboard().getString();
                teamListView.getItems().addAll(new Player(player));
                playersList.remove(new Player(player));
                dragEvent.setDropCompleted(true);
       private void buildGUI()
    //      rootPane.setGridLinesVisible(true);
          rootPane.setPadding(new Insets(10));
          rootPane.setPrefHeight(30);
          rootPane.setPrefWidth(100);
          rootPane.setVgap(20);
          rootPane.setHgap(20);
          rootPane.add(playersListView, 0, 0);
          rootPane.add(teamListView, 1, 0);
       private void populateData()
          playersList.addAll(
                new Player("Adam"), new Player("Alex"), new Player("Alfred"), new Player("Albert"),
                new Player("Brenda"), new Player("Connie"), new Player("Derek"), new Player("Donny"),
                new Player("Lynne"), new Player("Myrtle"), new Player("Rose"), new Player("Rudolph"),
                new Player("Tony"), new Player("Trudy"), new Player("Williams"), new Player("Zach")
          playersListView.setItems(playersList);
       private void initializeComponents()
          playersListView.setPrefSize(250, 290);
          playersListView.setEditable(true);
          playersListView.getSelectionModel().setSelectionMode(SelectionMode.MULTIPLE);
          playersListView.setCellFactory(new Callback<ListView<Player>, ListCell<Player>>()
             @Override
             public ListCell<Player> call(ListView<Player> playerListView)
                return new ListCell<Player>()
                   @Override
                   protected void updateItem(Player player, boolean b)
                      super.updateItem(player, b);
                      if (player != null)
                         setText(player.getName());
          teamListView.setPrefSize(250, 290);
          teamListView.setEditable(true);
          teamListView.getSelectionModel().setSelectionMode(SelectionMode.MULTIPLE);
          teamListView.setCellFactory(new Callback<ListView<Player>, ListCell<Player>>()
             @Override
             public ListCell<Player> call(ListView<Player> playerListView)
                return new ListCell<Player>()
                   @Override
                   protected void updateItem(Player player, boolean b)
                      super.updateItem(player, b);
                      if (player != null)
                         setText(player.getName());

    Yeah, this is a pain. I filed https://javafx-jira.kenai.com/browse/RT-29082 a while back. Go ahead and vote for it if you are inclined...
    I think the issue in your case is that the observable list provided by MultipleSelectionModel.getSelectedItems() is not Serializable. So even if you make your Player class Serializable, the list itself isn't. The first thing I would try, I think, is to make Player implement Serializable and then pass in an ArrayList instead of the observable list. So you can do
    content.put(dataFormat, new ArrayList<Player>(playersListView.getSelectionModel().getSelectedItems()));
    and
    List<Player> player = (List<Player>) dragEvent.getDragboard().getContent(dataFormat);
    teamListView.getItems().addAll(player);
    If that doesn't work, a workaround is just to store the "dragged list" in a property:
    final ListProperty<Player> draggedPlayers = new SimpleListProperty<Player>();
    // Drag detected handler:
    content.putString("players");
    draggedPlayers.set(playersListView.getSelectionMode().getSelectedItems());
    // Drag dropped handler:
    if (dragboard.hasString() && dragboard.getString().equals("players")) {
         teamListView.getItems().addAll(draggedPlayers.get());
         draggedPlayers.set(null);

  • Mail attachment drag and drop issue

    Been facing serious mail attachment drag-and-drop issue since 10.8 (if not from 10.7) and was disappointed to find the same behaviour still in 10.9.
    When I drag and drop a picture file (from Finder for example) into a message window or onto the Mail.app Dock icon, the system's window management somehow gets confused: my next step is to click on the message window in order to start typing. However, the mouse click causes that very window to escape under all other open applications / windows. Further on, I dig under to find the escapee and click again: once more it escapes. This can go on for a few annoying rounds until gets solved in an unexplainable way. This behaviour in not consistent, but has happens in about 8 cases out of 10.
    Apart from Mail.app I do not experience drag and drop issues of any kind.
    Anyone else suffering from this?

    I'd be interested in the answer to this too.
    It only just started happening to me a day or so ago, about the time that I think I did an OS upgrade.
    I'm on OSX 10.8.2.
    Its annoying.
    I can drop and drag in Finder but it just affects email.

  • Drag and Drop issue from Explorer folder to Music Library

    Hello
    I just updated my iTunes to 8.0.0.20 but something unexpected happened. I can’t drag and drop anymore songs from an explorer folder into my music library when my view mode is set to Grid (Album, Artist, Genre or Composer).
    When I try I have a kind of interdiction circle under my pointer.
    I can only perform this operation in list mode view. Few hours ago it was still possible to perform it but not after I updated. I reinstalled my iTunes but the problem persists.
    I have read the forums I know I can add to my playlist as usual by using the menu. But is it possible to get drag and drop operation when I drags song directly from a folder on my explorer window?
    It would be very appreciated if someone has an answer. I really messed up my library trying to fix this

    I fixed the drag and drop issues I had! Turns out they were caused by the permission problems of Vista. To fix it I just made sure all the files in the iTunes folder and sub folders were full control by my account.
    Make sure you check the properties of the iTunes database specifically because before, the iTunes folder had the correct permissions but they hadn't actually been inherited correctly by the iTunes DB files. Hope this helps anyone else.

  • Drag and Drop issue in Jlist - Transferhandler not working

    Hi all,
    I have a problem associated with the drag and drop of components into a Jlist.
    When I drag component out of a Jlist, the control reaches inside transfer handler, but when I try to insert a component into the Jlist, the control does not reach inside Jlist transfer handler.
         jlist.setDropMode(DropMode.INSERT);
         jlist.setDragEnabled(true);
         jlist.setTransferHandler(new TransferHandler()
                   List fileList;
                   boolean export = false;
                   List<File> newList = null;
                   protected Transferable createTransferable(JComponent c)
                        System.out.println("inside handler");
                                    ..............................Please help me with this issue.
    Any help in this regard will be well appreciated with dukes.
    Regards,
    Anees

    AneesAhamed wrote:
    Hi all,
    I have a problem associated with the drag and drop of components into a Jlist.
    When I drag component out of a Jlist, the control reaches inside transfer handler, but when I try to insert a component into the Jlist, the control does not reach inside Jlist transfer handler.
    jlist.setDropMode(DropMode.INSERT);
    jlist.setDragEnabled(true);
    jlist.setTransferHandler(new TransferHandler()
                   List fileList;
                   boolean export = false;
                   List<File> newList = null;
                   protected Transferable createTransferable(JComponent c)
                        System.out.println("inside handler");
    ..............................Please help me with this issue.
    Any help in this regard will be well appreciated with dukes.If you're wondering why your createTransferable() method is not called when you drag from some other component and drop into the list it is because createTransferable() is called when you start dragging. So it would be the TransferHandler of the source component, not your target list, that has its createTransferable() called in that case.
    When the list is the target of a drag&drop you should see the canImport() method of your TransferHandler being called. Do a System.out(0 in that method as well and see if that is the case.

  • Drag and drop issue alternatives

    Hello
    i'm having the same drag and drop issue as the other guys here. basically cant drag and drop to the desktop. Im looking for a workaround that doesnt involve making temporary backups or repairing iphoto libraries. My library is 260gb and even though it is being backed up i dont have a spare 260gb.

    That does not exist - the workaround (maybe permanent solution - who knows) is
    File menu ==> export
    And BTW if you are not backingup all the time you are 100% guarenteed to lose all of your files and photos sooner or later
    LN

  • Javafx 2.1: Drag and Drop issue (Mac)

    Hi all,
    As I related in other question I've posted here today, I'm having some problems when running my code which worked on windows now that I'm on a mac. This one is related to drag and drop, it used to work on windows (Write once, debug everywhere!) but now the onDragDropped event is not being fired. Here's the code. Any help is appreciated. Thanks in advance
              HRWindowGridPane.setOnDragEntered(new EventHandler<DragEvent>() {
                   @Override
                   public void handle(DragEvent event) {
                        System.out.println("Drag entered");
                        lblPhoto.setEffect(finalBlend);
                        event.consume();
              HRWindowGridPane.setOnDragExited(new EventHandler<DragEvent>() {
                   @Override
                   public void handle(DragEvent event) {
                        lblPhoto.setEffect(null);
                        System.out.println("Drag exited");
                        event.consume();
              EventHandler<DragEvent> onDragOver = new EventHandler<DragEvent>() {
              public void handle(DragEvent event) {
              /* data is dragged over the target */
              /* accept it only if it is not dragged from the same node
              * and if it has a string data */
              if (event.getGestureSource() != HRWindowGridPane &&
              event.getDragboard().hasFiles()) {
              /* allow for both copying and moving, whatever user chooses */
              event.acceptTransferModes(TransferMode.ANY);
              System.out.println("Drag over");
              event.consume();
              HRWindowGridPane.setOnDragOver(onDragOver);
              HRWindowGridPane.setOnDragDropped(new EventHandler<DragEvent>()
                   @Override
                   public void handle(DragEvent event)
                        System.out.println("Drag dropping");
                        Dragboard db = event.getDragboard();
                        System.out.println("Drag dropped: got dragboard from event!");
                        if(db.hasFiles())
                             System.out.println("Drag dropped: dragboard has files!");
                             for(File file:db.getFiles())
                        if(file.getName().contains(".jpg") || file.getName().contains(".jpeg") || file.getName().contains(".JPG"))
                             Image img;
                                       try
                                            System.out.println("Everything is fine until image processing... hmmm");
                                            img = new Image(file.toURI().toURL().toString(), 118.0, 88.0, false, true);
                                            ImageView view = new ImageView(img);
                                            view.setFitWidth(118.0);
                                            view.setFitHeight(88.0);
                                            view.resize(118.0, 88.0);
                                            lblPhoto.setGraphic(view);
                                            avatarImage = file;
                                       catch (IOException e)
                                            e.printStackTrace();
                        else
                             AlertWindow alert = new AlertWindow("Falha", "O Arquivo não é uma imagem JPG válida");
                             try
                                  Stage stage = new Stage();
                                            alert.start(stage);
                                            stage.toFront();
                                            HRWindowGridPane.toBack();
                                            stage.centerOnScreen();
                                            stage.show();
                                       } catch (Exception e) {
                                            e.printStackTrace();
                        event.setDropCompleted(true);
                        event.consume();
              HRWindowGridPane.setOnDragDone(new EventHandler<DragEvent>() {
                   @Override
                   public void handle(DragEvent event)
                        System.out.println("Drag done");
              });

    Hi,
    I submitted this bug a while ago (http://javafx-jira.kenai.com/browse/RT-20253) hopefully it will be solved soon.
    Andy

  • Strange UI sticking issue with drag/drop and JList

    Hi all,
    I have implemented drag/drop between a jtree and jlist. The jtree can accept drops from the jtree (nodes to other parent nodes) and from the jlist. The jlist can accept nodes of the tree being dropped on it.
    Let me say this much, it all works. Works fine and great. BUT, the purpose of my post is I am seeing a very strange and not easily reproducible problem.
    I should first say that after a successful drop, the list removes the selected items. I do support drag/drop for multiple items.
    When I drag items from the list to the tree, reasonbly normal (not too fast), everything seems to work every time. But if I drag an item quickly from the list to the tree, for some reason after the items are removed from the list, another item is selected, sometimes NOT in the place of where the item(s) were selected. Infact, when I drag quickly, I notice the selection changes in the list itself. I only accept tree objects being dropped in the list, so there is no ability to drag/drop list items onto itself, and thus if I drag a list item around the list normally, nothing changes..the item I am dragging stays selected and the cursor shows the drag arrow.
    So this problem seems seems odd. I can reproduce it fairly easily, but only when I click and drag quickly.
    Anyone have ideas? I don't see where in my list code that as I drag, when drop is done, etc that I select anything in the list. I have tried JDK 1.4.1 and 1.4.2 and it does it in both. I don't see a bug in the bug database for it, and I am not sure its a bug in the JVM or my own code!
    Any help is appreciated. Can't really post code as its a large set of code and it is dependent on our company project, so it would take some time to take the code out into its own app to test it again.

    Hi,
    +" Please note that dropSite==null is a legal value for collection components. dropSite=null and DropOrientation==ON indicates that the drop has happened outside the data portion of the collection component and should be treated as a drop on the entire component Also note that dropSite==null and DropOrientation==AFTER indicates that the drop has happened on an empty collection component and the user intends to append the data."+
    http://download.oracle.com/docs/cd/E17904_01/apirefs.1111/e10684/oracle/adf/view/rich/event/DropEvent.html#getDropSite__
    List dropRowKey = (List) dropEvent.getDropSite();
            //if no dropsite then drop area was not a data area
            if(dropRowKey == null){
                return DnDAction.NONE;
            }Frank
    Edited by: Frank Nimphius on Feb 18, 2011 11:18 PM

  • ADF FACES: Drag&drop of ADF Faces component set all prefixes to af: or :afh

    First i create a JSF page without ADF Faces components;
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <%@ page contentType="text/html;charset=windows-1252"%>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <f:view>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"></meta>
    <title>
    untitled2
    </title>
    </head>
    <body>
    <h:form>
    <h:outputText value="outputText0"/>
    </h:form>
    </body>
    </html>
    </f:view>
    Then i put the ADF Faces components <af:inputText (or <af:table>) label="Label 0"/> per drag & drop to my JSF page:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <%@ page contentType="text/html;charset=windows-1252"%>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <%@ taglib uri="http://xmlns.oracle.com/adf/faces/EA11" prefix="af"%>
    <%@ taglib uri="http://xmlns.oracle.com/adf/faces/EA11/html" prefix="afh"%>
    <f:view>
    <afh:html>
    <afh:head title="untitled2">
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"></meta>
    </afh:head>
    <afh:body>
    <af:form>
    <h:outputText value="outputText0"/>
    <af:inputText label="Label 0"/>
    </af:form>
    </afh:body>
    </afh:html>
    </f:view>
    !!! All tag prefixes are changed to af: or rather afh: !!!
    Why? Is this a feature? WHERE CAN I DISABLE THIS???
    I read in docs that ADF Faces components works well together with RI components or other and i can mix them.

    I posted about this recently and didn't get a single response. I've scoured the project setting/ preferences and was unable to find any pertinant setting. The workaround i've used is to design the entire page and then use notepad(yep notepad) to add the adf tags. Don't bother trying to open the .jsp/.jspx again in jdev or it will modify the tags. I'm assuming this will be addressed in the production release and am hoping this is not a branding issue.
    I'd love to hear a products person address this.

  • Unable to double-click or drag/drop files to open.

    I'm running Photoshop CC 64 on a Windows 7 64 machine and am only able to open files in Photoshop by going to File->Open. Double-clicking from Explorer doesn't work and i can not drag/drop files into the open application window or taskbar icon. Right clicking on files and selecting "Open with" also doesn't work.
    I checked file associations and made sure to choose CC 64. If I right click on the shortcut and choose "Run As Administrator" which I have to do in order to get files to open between Lightroom and Photoshop (both need to be Run As Administrator), I'm still unable to open from Windows Explorer. However, if I check the box to "Run this program as administrator" in the shortcut's Compatibility tab, I can double-click to open from Explorer but am prompted with a UAC warning every time. Dragging/dropping into the open app still doesn't work.
    Opening between Bridge and PS works as expected so long as both programs are "Run As Administrator"
    Been searching the forums here and seen suggestions of similar but not the same issue, at least not that I've found.
    Anyone else experiencing? Suggested remedies?

    This is an OS permission problem.  Make sure you have ownership of the HD.  Do a web search on how to check.  External HD can be a problem for permission.

Maybe you are looking for

  • Messages are not deleted from the DB

    Hi, in the OCS Database, as i understand, all the messages that are deleted goes to a collection folder (id=4). The Problem is that none was deleted so far from it! All the old messages are still archived on the DB and i want to erase them all, how??

  • CRM learning

    Dear Friends I am an user of SD since last 3 years. I am planning to switch to Sap. So I am thinking about CRM functional (not SD because I think  CRM has better prospect). Now while learning CRM functional, is it necessary that I should have any tec

  • IChat AV 4, can't edit buddy icons?

    I don't know if apple either dropped the ability to be able to edit your buddys' icon anymore or if it's a bug. So I was wondering if someone else with leopard could try that out as well, Thanks! The feature I'm referring to is on iChat AV is if you

  • How to run from the caller's step in teststand

    Hi, When an error occurs in a step during a sequence, I can use the SequenceFilePostStepRuntimeError call back to catch the error. But how can I go back to the step which is the one just raised the error for a retry run again? I do not want to make a

  • Photoshop Elements 13 Diashow

    Hallo, ich verzweifel grad an der Diashow im Photoshop Elements 13. Dort gibt es ja verschiedene Diashow-Themen die man wählen kann. Favorisiert habe ich das "Klassisch Dunkel". Ich habe den Bildern ein Wasserzeichen eingefügt, in der Diashow wird da