This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| if (typeof (MEA) == "undefined") { MEA = {} }; | |
| if (typeof (MEA.Account) == "undefined") { MEA.Account = {} }; | |
| if (typeof (MEA.Account.AccountForm) == "undefined") { MEA.Account.AccountForm = {} }; | |
| MEA.Account.AccountForm = { | |
| onLoad: function (executionContext) { | |
| var formContext = executionContext.getFormContext(); | |
| return new Promise((resolve, reject) => { | |
| setTimeout(() => { | |
| var formItem = formContext.ui.formSelector.items.get(1); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| if (typeof (MEA) == "undefined") { MEA = {} }; | |
| if (typeof (MEA.Account) == "undefined") { MEA.Account = {} }; | |
| if (typeof (MEA.Account.AccountForm) == "undefined") { MEA.Account.AccountForm = {} }; | |
| MEA.Account.AccountForm = { | |
| onLoad: function (executionContext) { | |
| var formContext = executionContext.getFormContext(); | |
| formContext.data.entity.addOnSave( | |
| (() => { | |
| var asyncSaveValidation = (saveCtx) => { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| if (typeof (MEA) == "undefined") { MEA = {} }; | |
| if (typeof (MEA.Account) == "undefined") { MEA.Account = {} }; | |
| if (typeof (MEA.Account.AccountForm) == "undefined") { MEA.Account.AccountForm = {} }; | |
| MEA.Account.AccountForm = { | |
| onLoad: function (executionContext) { | |
| var formContext = executionContext.getFormContext(); | |
| formContext.data.entity.addOnSave( | |
| (() => { | |
| var asyncSaveValidation = (saveCtx) => { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using Microsoft.Crm.Sdk.Messages; | |
| using Microsoft.Xrm.Sdk; | |
| using Microsoft.Xrm.Sdk.Messages; | |
| using Microsoft.Xrm.Sdk.Query; | |
| using Microsoft.Xrm.Tooling.Connector; | |
| using System; | |
| namespace MEA | |
| { | |
| class sampleConsoleApp |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function onLoad(executionContext){ | |
| var formContext = executionContext.getFormContext(); | |
| var pageContext = Xrm.Utility.getPageContext(); | |
| var isWon = pageContext.input.data.param_won; | |
| if(isWon) formContext.getControl('actualend').setLabel('Win date'); | |
| else formContext.getControl('actualend').setLabel('Lose date'); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 | |
| $sourceNugetExe = "https://dist.nuget.org/win-x86-commandline/latest/nuget.exe" | |
| $targetNugetExe = ".\nuget.exe" | |
| Remove-Item .\Tools -Force -Recurse -ErrorAction Ignore | |
| Invoke-WebRequest $sourceNugetExe -OutFile $targetNugetExe | |
| Set-Alias nuget $targetNugetExe -Scope Global -Verbose | |
| ## | |
| ##Download Plug-in Registration tool | |
| ## |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <head> | |
| <title>Flow JS SDK Sample</title> | |
| <style> | |
| .flowContainer iframe { | |
| border: none; | |
| width: 100%; | |
| height: 100%; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| if (typeof (MEA) == "undefined") { MEA = {} }; | |
| if (typeof (MEA.Apps) == "undefined") { MEA.Apps = {} }; | |
| if (typeof (MEA.Apps.RD) == "undefined") { MEA.Apps.RD = {} }; | |
| MEA.Apps.RD = { | |
| onLoad: async function () { | |
| //Xrm.Panel.loadPanel("WebResources/mea_/Webpages/Youtube.html", "Panel 1"); | |
| var sidePanes = Xrm.App.sidePanes; | |
| sidePanes.state = 0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8" ?> | |
| <manifest> | |
| <control namespace="MEA" constructor="ValueTurner" version="1.0.21" display-name-key="ValueTurner" description-key="ValueTurner description" control-type="standard" > | |
| <external-service-usage enabled="false"> | |
| </external-service-usage> | |
| <property name="data" display-name-key="data" description-key="data" of-type="Object" usage="input" required="true" /> | |
| <property name="sessionStorageKey" display-name-key="sessionStorageKey" description-key="sessionStorageKey" of-type="SingleLine.Text" usage="input" required="true" /> | |
| <resources> | |
| <code path="index.ts" order="1"/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { IInputs, IOutputs } from "./generated/ManifestTypes"; | |
| export class ValueTurner implements ComponentFramework.StandardControl<IInputs, IOutputs> { | |
| private context_: ComponentFramework.Context<IInputs> | |
| constructor() { | |
| } | |
| /** |