Skip to content

Instantly share code, notes, and snippets.

@vgrem
Last active December 11, 2015 09:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vgrem/4582165 to your computer and use it in GitHub Desktop.
Save vgrem/4582165 to your computer and use it in GitHub Desktop.
Initializing of SharePoint TaxonomyWebTaggingControl control
/// <summary>
/// Initializing TaxonomyWebTaggingControl control
/// </summary>
/// <param name="countryControl"> </param>
/// <param name="session"></param>
/// <param name="countriesTermSet"></param>
private void InitCountriesControl(TaxonomyWebTaggingControl countryControl, TaxonomySession session, TermSet countriesTermSet)
{
countryControl.SSPList = countriesTermSet.TermStore.Id.ToString();
countryControl.TermSetList = countriesTermSet.Id.ToString();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment