Espace join Entity
on Espace.Id = Entity.Espace_Id
Entity join Etity_Attr
on Entity.Id = Etity_Attr.Entity_Id
where Espace.Name = @ModuleNameThatContainsTheEnity
Cheat sheet that maps a wijmo object names to their OutSystems references. Useful for porting code examples from the wijmo site and running them against the OutSystems Wijmo libraries that are imbedded with the Advanced Data Grid.
Wijmo | OutSystems |
---|---|
CellRange | wijmo.grid.CellRange |
CollectionView | wijmo.collections.CollectionView |
ColumnGroup | wijmo.grid.ColumnGroup |
DataMap | wijmo.grid.DataMap |
FlexGrid | wijmo.grid.FlexGrid |
FlexGridFilter | wijmo.grid.filter.FlexGridFilter |
This file contains 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
# Visual Studio Code Rest API Client File | |
# For: https://success.outsystems.com/Documentation/11/Reference/OutSystems_APIs/LifeTime_API_v2 | |
@baseUrl = https://<lifetime>/lifetimeapi/rest/v2 | |
@header = Authorization: Bearer <token> | |
### | |
@IncludeEnvStatus= | |
@IncludeModules= |
This file contains 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
Dim objHTA | |
Dim cClipBoard | |
Dim WshShell | |
set objHTA=createobject("htmlfile") | |
cClipBoard=objHTA.parentwindow.clipboarddata.getdata("text") | |
Set WshShell = WScript.CreateObject("WScript.Shell") | |
WshShell.RegWrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Applets\Regedit\LastKey", cClipBoard, "REG_SZ" | |
WshShell.Run "regedit.exe -m" | |
Set objHTA = nothing | |
Set WshShell = nothing |
This file contains 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 module = (function () { | |
// private variables and functions | |
var foo = 'bar'; | |
// constructor | |
var module = function () { | |
}; | |
// prototype | |
module.prototype = { |
This file contains 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
<QueryList> | |
<Query Id="0" Path="Security"> | |
<Select Path="Security"> | |
*[EventData[Data[@Name='TargetUserName'] and (Data='ebCQ47')]] and | |
*[System[(EventID=512 or EventID=513 or EventID=528 or EventID=538 or EventID=551 or EventID=4608 or EventID=4609 or EventID=4624 or EventID=4634 or EventID=4647 or EventID=4778 or EventID=4779 or EventID=4780 or EventID=4781 or EventID=4782 or EventID=4783)]]</Select> | |
<Select Path="Microsoft-Windows-Security-Audit-Configuration-Client/Operational"> | |
*[EventData[Data[@Name='TargetUserName'] and (Data='ebCQ47')]] and | |
*[System[(EventID=512 or EventID=513 or EventID=528 or EventID=538 or EventID=551 or EventID=4608 or EventID=4609 or EventID=4624 or EventID=4634 or EventID=4647 or EventID=4778 or EventID=4779 or EventID=4780 or EventID=4781 or EventID=4782 or EventID=4783)]]</Select> | |
<Select Path="Microsoft-Windows-Security-IdentityListener/Operational"> |
This file contains 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"?> | |
<DeclarationSortingDefinition> | |
<DeclarationSorter type="MultiConditionalDeclarationSorter"> | |
<ConditionalDeclarationSorter> | |
<ClassDeclarationCondition type="AttributeClassDeclarationCondition" Attributes="TestFixture"/> | |
<DeclarationSorter type="DeclarationSorter"> | |
<DeclarationComparer type="MultiDeclarationComparer"> | |
<DeclarationComparer type="TypeDeclarationComparer" TypeOrder="Constant,Field,Property,Constructor,Method"/> | |
<DeclarationComparer type="ConditionalDeclarationComparer"> | |
<DeclarationCondition type="TypeDeclarationCondition" Types="Method" /> |
This file contains 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
Show hidden characters
{ | |
// JSHint Default Configuration File (as on JSHint website) | |
// See http://jshint.com/docs/ for more details | |
"maxerr" : 500, // {int} Maximum error before stopping | |
// Enforcing | |
"bitwise" : true, // true: Prohibit bitwise operators (&, |, ^, etc.) | |
"camelcase" : false, // true: Identifiers must be in camelCase | |
"curly" : false, // true: Require {} for every new block or scope |
NewerOlder