Page 1 of 1

CheckBoxList does not open

PostPosted: 13 May 2015 08:55
by etwoss
Hi

I had a working form with a TIWCGJQCheckBoxList. Now form is a TIWCGJQFrame with a TIWCGJQDialog.
The TIWCGJQCheckBoxList shows '4 Selected' but the dropdown is not shown anymore.

I did put codesite in 'BeforeDropDown' and in 'OnOpen' to see if these are fired, and they are.
Showing the count

Code: Select all
procedure TFrmMailUserSelection.IWCGJQComboBoxCostCentreJQCheckBoxListOptionsBeforeOpen(
  Sender: TObject; AParams: TStringList);
begin
 codesite.Send('IWCGJQComboBoxCostCentreJQCheckBoxListOptionsBeforeOpen');
 codesite.Send('Count', IWCGJQComboBoxCostCentre.Items.Count);

end;


Shows 4

But no dropdown with the 4 values is shown

Any idea?
Eric

Re: CheckBoxList does not open

PostPosted: 13 May 2015 09:31
by Alexander Bulei
Hi Eric,

Check the zIndex.

Best Regards.

Re: CheckBoxList does not open

PostPosted: 13 May 2015 09:56
by etwoss
Hi

Tried that of course without result (values 0, 600 and 10000)

Frame has also two ComboBoxEx who are working correctly (Zindex 0)

Eric

Re: CheckBoxList does not open

PostPosted: 13 May 2015 09:58
by Alexander Bulei
Eric,

I mean, menuZIndex in options.

Best Regards.

Re: CheckBoxList does not open

PostPosted: 13 May 2015 10:05
by etwoss
Hi

Its value is (and was) 1000 (default by the component)

Should work?
Also tried higher value
All same as working IWForm where it was working

Eric

Re: CheckBoxList does not open

PostPosted: 13 May 2015 10:13
by etwoss
Hi

Send test (in your demo)

Eric

Re: CheckBoxList does not open

PostPosted: 13 May 2015 14:34
by Alexander Bulei
Hi Eric,

Change the MenuZIndex to correct value (depend of your dialog zIndex).

Best Regards.

Re: CheckBoxList does not open

PostPosted: 13 May 2015 14:40
by etwoss
Hi
Yeah must be higher value than the dialog itself.
Working now,

Thanks.

Eric