Skip to content

Commit 6b75cb7

Browse files
authored
Merge pull request #739 from psah434/updatecache
EditableGrid does not need tooltips
2 parents 8fb63c9 + 607b3de commit 6b75cb7

File tree

3 files changed

+25
-1
lines changed

3 files changed

+25
-1
lines changed

arm-ttk/testcases/CreateUIDefinition/Tooltips-Should-Be-Present.test.ps1

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ $shouldHaveTooltips = $CreateUIDefinitionObject |
2121
$noToolTipControls = "Microsoft.Common.InfoBox",
2222
"Microsoft.Common.Section",
2323
"Microsoft.Common.TextBlock",
24-
"Microsoft.Solutions.ArmApiControl"
24+
"Microsoft.Solutions.ArmApiControl",
25+
"Microsoft.Common.EditableGrid"
2526

2627
foreach ($shouldHave in $shouldHaveTooltips) {
2728
# then loop through each control
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
3+
"contentVersion": "1.0.0.0",
4+
"resources": [
5+
]
6+
}
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"$schema": "https://schema.management.azure.com/schemas/0.1.2-preview/CreateUIDefinition.MultiVm.json#",
3+
"handler": "Microsoft.Azure.CreateUIDef",
4+
"version": "0.1.2-preview",
5+
"parameters": {
6+
"basics": [
7+
{
8+
"name": "EditableGrid",
9+
"type": "Microsoft.Common.EditableGrid",
10+
"label": "Editable don't need tooltips"
11+
}
12+
],
13+
"outputs": {
14+
"Location": "[location()]"
15+
}
16+
}
17+
}

0 commit comments

Comments
 (0)