web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

No record found.

News and Announcements icon
Community site session details

Community site session details

Session Id :
Customer experience | Sales, Customer Insights,...
Answered

Trying to conditionally set view of a subgrid based on Option set on form

(0) ShareShare
ReportReport
Posted on by 387

Hi I'm trying to get a subgrid on my form to change views depending on a option set selection.

I am using

function fnChangeViewOfSubgrid(ExecutionContext) {
	"use strict";
	var oFormContext = executionContext.getFormContext();
	var Practice = oFormContext.getAttribute("new_practices").getValue();
	var viewSelector = oFormContext.getControl("Opportunities").getViewSelector();
	if(Practice != null) {
		Switch(Practice) {
			Case 100000005: var PracticeView = {
				entityType: 1039,
				id: "4F671F67-9D35-EB11-A813-000D3A347311",
				name: "Engineering Practice - Active Opportunities"
			};
			viewSelector.setCurrentView(PracticeView);
			default: var PracticeView = {
				entityType: 1039,
				id: "00000000-0000-0000-00AA-000010003006",
				name: "Closed Opportunities"
			};
			viewSelector.setCurrentView(PracticeView);
		}
	}
}

But it isn't working.

I've tried various online javascript validators but they are saying I'm missing semicolons? But I don't see it?

Does anyone else see what I'm doing wrong or have a better way?

Thanks,

Terry

I have the same question (0)
  • Verified answer
    Fubar Profile Picture
    2,761 on at

    Switch and Case should be all lower switch and case

    and you should break; at the end of each case block (unless you want both case and default code blocks to run)

  • Mattw112b Profile Picture
    387 on at

    Thanks,

    Turns out I had other capitalization issues too...

    Working now

    function fnChangeViewOfSubgrid(executionContext) {

    var oFormContext = executionContext.getFormContext();

    var SelectedPractice = oFormContext.getAttribute("new_practices").getValue();

    var viewSelector = oFormContext.getControl("Opportunities").getViewSelector();

    if (SelectedPractice !== null) {

    switch (SelectedPractice) {

    case 100000005:

    var PracticeView = {

    entityType: 1039,

    id: "4F671F67-9D35-EB11-A813-000D3A347311",

    name: "Engineering Practice - Active Opportunities"

    };

    viewSelector.setCurrentView(PracticeView);

    break;

    default:

    var PracticeView = {

    entityType: 1039,

    id: "00000000-0000-0000-00AA-000010003006",

    name: "Closed Opportunities"

    };

    viewSelector.setCurrentView(PracticeView);

    break;

    }

    }

    }

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Stars!

Meet the Microsoft Dynamics 365 Contact Center Champions

We are thrilled to have these Champions in our Community!

Congratulations to the April Top 10 Community Leaders

These are the community rock stars!

Leaderboard > Customer experience | Sales, Customer Insights, CRM

#1
ManoVerse Profile Picture

ManoVerse 128 Super User 2026 Season 1

#2
11manish Profile Picture

11manish 113

#3
Muhammad Shahzad Shafique Profile Picture

Muhammad Shahzad Sh... 69 Most Valuable Professional

Last 30 days Overall leaderboard

Product updates

Dynamics 365 release plans