0

We have a SharePoint 2010 list where a custom field "Lookup with Picker" has been implemented through a farm solution. We need to migrate the list to SharePoint Online but since we cannot deploy farm solutions in O365 environment, is there a alternative or workaround to implement that custom field in SP Online?

Soumyorup Dey
  • 26
  • 1
  • 5

1 Answers1

0

You could use JSLink to change field render for classic view in SharePoint online.

https://learn.microsoft.com/en-us/sharepoint/dev/solution-guidance/custom-field-type-sharepoint-add-in

For modern view, you need create SPFx solution.

Lee
  • 5,305
  • 1
  • 6
  • 12
  • Thanks @Lee_MSFT for your response. I am looking to develop something similar to the one shown in this [link](https://archive.codeplex.com/?p=lookupwithpicker) – Soumyorup Dey May 10 '19 at 07:19
  • The custom field type can be applied to on-premise server only, SharePoint online doesn't allow server side object coding. – Lee May 10 '19 at 07:28
  • I understand that but is there any workaround/alternative to develop something similar for SP Online?......Is there anything available readymade in SharePoint App Store? – Soumyorup Dey May 12 '19 at 13:55