Skip to main content

Home/ Microsoft SharePoint Tips & Tricks/ Group items tagged values

Rss Feed Group items tagged

trimantra

Get Sharepoint Term's Custom Local Property values (Client Object Model) | Trimantra Blog - 0 views

  •  
    We can get values of Custom local properties of Term using Client Object Model. Register following files on your page: <SharePoint:ScriptLink ID="spPage" Name="sp.js" LoadAfterUI="true" Localizable="false" runat="server" /> <script type="text/javascript" src="../../../_layouts/15/SP.Taxonomy.js"></script>   Js code to get Custom Local Property values: $(document).ready(function () { SP.SOD.executeOrDelayUntilScriptLoaded(loadAllTerms, 'SP.Taxonomy.js'); }); //loads all existing terms function…
  •  
    We can get values of Custom local properties of Term using Client Object Model. Register following files on your page: <SharePoint:ScriptLink ID="spPage" Name="sp.js" LoadAfterUI="true" Localizable="false" runat="server" /> <script type="text/javascript" src="../../../_layouts/15/SP.Taxonomy.js"></script>   Js code to get Custom Local Property values: $(document).ready(function () { SP.SOD.executeOrDelayUntilScriptLoaded(loadAllTerms, 'SP.Taxonomy.js'); }); //loads all existing terms function…
trimantra

Get Sharepoint Term's Custom Local Property values (Server side) | Trimantra Blog - 0 views

  •  
    We can get values of Custom local properties using server side code. There is no direct way to get custom local from terms. For that we need to do manual coding which is as follow:   /// Get Custom Local Property values of particular term. private void GetCustomLocalPropertyValues(Term term) {…
  •  
    We can get values of Custom local properties using server side code. There is no direct way to get custom local from terms. For that we need to do manual coding which is as follow:   /// Get Custom Local Property values of particular term. private void GetCustomLocalPropertyValues(Term term) {…
trimantra

Create a Custom config file for Codeigniter | Trimantra Blog - 0 views

  •  
    By default, CodeIgniter has one primary config file, located at "application/config/config.php" What if we want to have a custom configuration file? What if we want to create custom config array with desired name? Codeigniter allows a developer to create custom file but developer has to define values with $config array developer cannot define a custom variable or array inside this new file and use it.
  •  
    By default, CodeIgniter has one primary config file, located at "application/config/config.php" What if we want to have a custom configuration file? What if we want to create custom config array with desired name? Codeigniter allows a developer to create custom file but developer has to define values with $config array developer cannot define a custom variable or array inside this new file and use it.
1 - 3 of 3
Showing 20 items per page