
Question:
Is there a way to dynamically populate a SalesLogix combo box value in a datagrid column (type combo box) in the LAN client?
Answer:
Set col = datagrid.Columns.Add(8) ' "8" indicates a Combo column With col .Caption = "Some Field" .FieldName = "SOMEFIELD" .Visible = true .Width = 50 .ReadOnly = false .DisableEditor = false With .Items .Add("Value 1") .Add("Value 2") .Add("Value 3") End With End With
Subscribe To Our Newsletter
Join our mailing list to receive the latest Infor CRM (Saleslogix) and Creatio (bpm'online) news and product updates!
You have Successfully Subscribed!