cancel
Showing results for 
Search instead for 
Did you mean: 

pane_combobox change panelevel

Former Member
0 Kudos

Hi,

i create a form with 3 folders (=3panelevel).

In panelevel=1 there are a pane_combobox filled with different values, but when i click on this item the system switch to panelevel=2. After mouse clicking on this item my folder1 looks like folder 2.

Does anyone got an idea whats going wrong ??

thanks

Markus

(SBO 2004, SP00 PL20)

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

  'when the item is created set these properties. my   pane level is 8
  oItm.FromPane = 8
  oItm.ToPane = 8
  'on the clcik event when the folder ic clicked set this
  oForm.PaneLevel = 8

hope this helps

Indika.

Former Member
0 Kudos

hi Indika,

i already set these settings. Without clicking on the panecombobox everything works fine. The error only occurs by clicking this item.

Markus

Trinidad
Product and Topic Expert
Product and Topic Expert
0 Kudos

Hi Markus,

I have done some testing on the PaneComboBox.

If my deductions are correct when you define a PaneComboBox the first value is linked with the PanelLevel 1, the second value with PanelLevel 2 and so on.

Test1.

I have created 2 folders, the first folder shows PanelLevel 1 and the second folder shows PaneLevel 2 (when user clicks on the folder).

I have added a PaneComboBox to the PaneLevel 1. I have set 2 ValidValues to the PaneComboBox (3 and 4).

I have added different items for paneLevel 3 and 4 and I wanted to link them with PaneComboBox values 3 and 4, but no way!

When I select value 2 it shows PaneLevel 1 and when I select value 3 it shows PaneLevel 2.

Workaround

Asign the PaneLevel 1 to the folder you want to create a PaneComboBox inside.

In your PaneComboBox set ValidValues from 1 to n.

For the items of this folder (including the PaneComboBox) set FromPane = 1, ToPane = n where n is the max valid value of your PaneComboBox.

For the other folders use different PaneLevel than 1 to n.

And then it works...

Remember you can only asign one PaneComboBox per Form (writen in the PaneComboBox section of the help file).

If you want a more exact analysis please create a CSN message asking for it, and don't forget to share the result with us!

Hope it helps

Trinidad.

Former Member
0 Kudos

Hi Trinidad,

i used 2 comboboxes instead. There are no problems anymore. Thanks for help.

bye

Markus