Skip to content

Item Picker

itempicker SelectedCustomers using Customers {  
      displayvalue = CustomerName;  
      editable = [true];  
      orderby = CustomerName desc;  
      label = "Favorite Customers";  
      filter = [Company = CurrentCompanyNo];  
   }  

Supported Properties

  • displayvalue
  • editable
  • orderby
  • label
  • filter

Limitations

itempicker can only be used within a structure. For example:

group FavoriteCustomersGroup for FavoriteCustomersStruct {  
   itempicker SelectedCustomers using Customers {  
      . . .   
   }  
}