Marco A.: ScrollBars in JSplitPane

Hallo,

wie muss man es machen, dass in einem JSplitPane ScrollBars angezeigt werden? Ich habe im SplitPane auf der linken Seite ein JTextPane, für dieses möchte ich ScrollBars. Was ich bis jetzt habe ist folgendes:

this.txtOutput = new JTextPane();
  this.txtOutput.setContentType("text/html");
  this.txtOutput.setEditable(false);

this.dlm = new DefaultListModel();
  this.lstUsers = new JList(dlm);

JScrollPane sp = new JScrollPane(this.txtOutput);
  sp.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);
  sp.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);

JSplitPane spp = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT);
  spp.setOneTouchExpandable(true);

spp.setRightComponent(this.lstUsers);
  spp.setLeftComponent(this.txtOutput);
  spp.setDividerLocation(this.getWidth()*80/100);
  this.gbl.setConstraints(spp, gbc);
  this.addComponent(spp);

Die ScrollBars werden jedoch nicht angezeigt...

Gruss Marco

  1. Hallo,

    spp.setLeftComponent(this.txtOutput);

    Müsstest Du hier nicht
     spp.setLeftComponent(sp);
    angeben?

    Gruß
       MichaelB

    1. Genau, jetzt klappts!