[BugFix]Adjust placeholders in job/tag/property page

This commit is contained in:
Ce Li (Chinasoft) 2017-01-11 19:13:49 +08:00
Родитель dff788728d
Коммит 19c345cb46
6 изменённых файлов: 6 добавлений и 16 удалений

1
.gitignore поставляемый
Просмотреть файл

@ -207,3 +207,4 @@ VendingMachineSample/packages/*
/RemoteMonitoring.VC.db
/RemoteMonitoring.VC.VC.opendb
/Simulator/Simulator.WebJob/DMSimulator.exe
/pingme.txt

Просмотреть файл

@ -5230,15 +5230,6 @@ namespace GlobalResources {
}
}
/// <summary>
/// Looks up a localized string similar to 123.
/// </summary>
public static string ValueTextPlaceHolder {
get {
return ResourceManager.GetString("ValueTextPlaceHolder", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to VERSION.
/// </summary>

Просмотреть файл

@ -2376,10 +2376,6 @@
<value> tags.sampletag</value>
<comment>Text input Placeholder</comment>
</data>
<data name="ValueTextPlaceHolder" xml:space="preserve">
<value>123</value>
<comment>Text input Placeholder</comment>
</data>
<data name="DeleteIconTooltip" xml:space="preserve">
<value>Delete Icon</value>
<comment>Tooltip.</comment>

Просмотреть файл

@ -46,6 +46,7 @@
<tr class="values_editor__group">
<td>
<input type="text" class="edit_form__texthalf edit_form__propertiesComboBox"
placeholder="@Strings.PropertyTextPlaceHolder"
data-msg-required="@Strings.RequiredValidationString"
data-rule-required="true"
data-bind='value: key,' />

Просмотреть файл

@ -46,6 +46,7 @@
<tr class="values_editor__group">
<td>
<input type="text" class="edit_form__texthalf edit_form__propertiesComboBox"
placeholder="@Strings.TagTextPlaceHolder"
data-msg-required="@Strings.RequiredValidationString"
data-rule-required="true"
data-bind='value: key' />

Просмотреть файл

@ -75,7 +75,7 @@
<td>
@*data-msg-required="@Strings.RequiredValidationString"
data-rule-required="true"*@
<input type="text" class="edit_form__texthalfvalue" placeholder="@Strings.ValueTextPlaceHolder"
<input type="text" class="edit_form__texthalfvalue"
data-bind='textInput: PropertyValue, enable:PropertyName() && !isDeleted(), event: { keyup: $root.createEmptyPropertyIfNeeded }, attr: { name: "DesiredProperties[" + $index() + "].PropertyValue", id: "DesiredProperties" + $index() + ".PropertyValue" }' />
</td>
<td>
@ -112,7 +112,7 @@
data-bind='value: TagName, attr: { name: "Tags[" + $index() + "].TagName", id: "Tags" + $index() + ".TagName" }' />
</td>
<td>
<input type="text" class="edit_form__texthalfvalue" placeholder="@Strings.ValueTextPlaceHolder"
<input type="text" class="edit_form__texthalfvalue"
data-bind='textInput: TagValue, enable:TagName() && !isDeleted(), event: { keyup: $root.createEmptyTagIfNeeded }, attr: { name: "Tags[" + $index() + "].TagValue", id: "Tags" + $index() + ".TagValue" }' />
</td>
<td>