You need to sign in to do that
Don't have an account?

Selection options and ApexPages.StandardSetController in lightning
I want to create new method in lightning. public ApexPages.StandardSetController optySetController; public list<SelectOption> listviewoptions { get{ List<SelectOption> tempList = new List<SelectOption>(); tempList.add(new selectOption('None',System.Label.NoViewSelection)); if (optySetController<>null)tempList.addAll(optySetController.getListViewOptions()); return tempList; } }
You can able to do it by using lightning:select