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
| var originalBlastStatus = null; | |
| function SaveAndRefresh() { | |
| //Xrm.Page.getAttribute("myAttributeName").setValue(null); | |
| //Xrm.Page.data.refresh(true); | |
| originalBlastStatus = Xrm.Page.getAttribute("new_campaign_status").getText(); | |
| checkStatusChanged(); | |
| } | |
| var checkStatusChanged = function () { |
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
| <fvTenant name="TestCorp-10" status="created,modified"> | |
| <fvCtx name="TestCorp-Router"/> | |
| <fvBD name="BD1"> | |
| <fvRsCtx tnFvCtxName="TestCorp-Router"/> | |
| <fvSubnet ip="10.0.0.1/24" scope="public"/> | |
| <fvSubnet ip="20.0.0.1/24" scope="public"/> | |
| <fvSubnet ip="30.0.0.1/24" scope="public"/> | |
| <fvSubnet ip="40.0.0.1/24" scope="public"/></fvBD> | |
| <fvAp name="3-TierApp"> | |
| <fvAEPg name="Client"> |
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
| <fvTenant name="TestCorp-10" status="created,modified"> | |
| <fvCtx name="TestCorp-Router"/> | |
| <fvBD name="BD1"> | |
| <fvRsCtx tnFvCtxName="TestCorp-Router"/> | |
| <fvSubnet ip="10.0.0.1/24" scope="public"/> | |
| <fvSubnet ip="20.0.0.1/24" scope="public"/> | |
| <fvSubnet ip="30.0.0.1/24" scope="public"/> | |
| <fvSubnet ip="40.0.0.1/24" scope="public"/></fvBD> | |
| <fvAp name="3-TierApp"> |
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
| <fvTenant name="TestCorp-10" status="created,modified"> | |
| <fvCtx name="TestCorp-Router"/> | |
| <fvBD name="BD1"> | |
| <fvRsCtx tnFvCtxName="TestCorp-Router"/> | |
| <fvSubnet ip="10.0.0.1/24" scope="public"/> | |
| <fvSubnet ip="20.0.0.1/24" scope="public"/> | |
| <fvSubnet ip="30.0.0.1/24" scope="public"/> | |
| <fvSubnet ip="40.0.0.1/24" scope="public"/></fvBD> | |
| <fvAp name="3-TierApp"> |
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
| <fvTenant name="TestCorp-10" status="created,modified"> | |
| <vzBrCP name="WebCt"> | |
| <vzSubj name="Web"> | |
| <vzRsSubjFiltAtt tnVzFilterName="http"/> | |
| </vzSubj> | |
| </vzBrCP> | |
| <vzBrCP name="AppCt"> | |
| <vzSubj name="RMI"> | |
| <vzRsSubjFiltAtt tnVzFilterName="rmi"/> | |
| </vzSubj> |
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
| <fvTenant name="TestCorp-10" status="created,modified"> | |
| <vzFilter name="http"> | |
| <vzEntry dFromPort="80" dToPort="80" etherT="ip" name="DPort-80" prot="tcp"/> | |
| </vzFilter> | |
| <vzFilter name="rmi"> | |
| <vzEntry dFromPort="1514" dToPort="1514" etherT="ip" name="DPort-1514" prot="tcp"/> | |
| </vzFilter> | |
| <vzFilter name="sql"> | |
| <vzEntry dFromPort="1433" dToPort="1433" etherT="ip" name="DPort-1433" prot="tcp"/> | |
| </vzFilter> |
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
| /* | |
| ** talker.c -- a datagram "client" demo | |
| */ | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <unistd.h> | |
| #include <errno.h> | |
| #include <string.h> | |
| #include <sys/types.h> | |
| #include <sys/socket.h> |
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
| /* | |
| ** listener.c -- a datagram sockets "server" demo | |
| */ | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <unistd.h> | |
| #include <errno.h> | |
| #include <string.h> | |
| #include <sys/types.h> | |
| #include <sys/socket.h> |
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
| /* | |
| ** client.c -- a stream socket client demo | |
| */ | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <unistd.h> | |
| #include <errno.h> | |
| #include <string.h> | |
| #include <netdb.h> | |
| #include <sys/types.h> |