farshadmohajeri / extpascal

Automatically exported from code.google.com/p/extpascal
49 stars 28 forks source link

ExtJS 3.1,TExtFormComboBox has not drop-down box #34

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
- ExtPascal: rev.584
- ExtJS: v.3.1
- Compiler: Delphi 7
- OSes: Windows XP
- WebServer: Apache2
- Mode: FCGI

On ExtJS 3.1,TExtFormComboBox did not have the drop-down box,

If I use ExtJS 3.0,it will ok.
Please check.

my program list:
      with ComboParentMenu.AddTo(Items) do
      begin
        Id := 'ComboParentMenu';
        FieldLabel := 'parent menu';
        AllowBlank := false;
        TriggerAction := 'all';
        Mode := 'local';
        ReadOnly := true;
        StoreArray := JSArray(enum);
        SetValue(sParentMenuId);
      end;

Original issue reported on code.google.com by luoca...@gmail.com on 12 Jan 2010 at 4:35

GoogleCodeExporter commented 9 years ago
sorry,
- ExtPascal: rev.594
the lastest version.

Original comment by luoca...@gmail.com on 12 Jan 2010 at 4:38

GoogleCodeExporter commented 9 years ago
This is a ExtJS 3.1 "feature"...
In ExtJS 3.1 the ReadOnly property hides the trigger and superceeds the 
Editable and
HideTrigger properties if the value is true. See API online-help.
If you remove ReadOnly property ou set it to false the trigger appears.

If you want post a bug report in Ext JS forum...

Original comment by wanderla...@gmail.com on 18 Jan 2010 at 6:44