View Issue Details

IDProjectCategoryView StatusLast Update
0001646JEDI VCL04 Feature Requestpublic2004-04-28 09:14
ReporterMarkus SpoettlAssigned Tomarcelb 
PrioritynormalSeverityminorReproducibilityalways
Status resolvedResolutionfixed 
Product Version 
Target VersionFixed in Version 
Summary0001646: JvInspectorCustomItem: Expose DropdownCount
Description I'd like to suggest (if done this with my local version already) to change CustomItem.DropDown as follows



    if ListBox.Items.Count < MaxListCount then
      ListCount := ListBox.Items.Count
    else
      ListCount := MaxListCount;

into

    if ListBox.Items.Count < DropDownCount then
      ListCount := ListBox.Items.Count
    else
      ListCount := DropDownCount;

and add a property

    property DropDownCount: Integer read FDropDownCount
                                    write FDropDownCount;

initialized to 8. This allows descent items to change the length of the list (I prefer 15-20 or more items in drop down lists).
TagsNo tags attached.

Activities

marcelb

2004-04-28 09:14

manager   ~0004114

Fixed in CVS rev 1.87

Issue History

Date Modified Username Field Change
2004-04-15 12:09 Markus Spoettl New Issue
2004-04-15 12:36 marcelb Assigned To => marcelb
2004-04-15 12:36 marcelb Status new => acknowledged
2004-04-15 12:38 marcelb Category 00 JVCL Components => 04 Feature Request
2004-04-28 09:14 marcelb Status acknowledged => resolved
2004-04-28 09:14 marcelb Resolution open => fixed
2004-04-28 09:14 marcelb Note Added: 0004114