mirror of https://github.com/apache/cloudstack.git
Make Offer HA field, Domain field not editable.
This commit is contained in:
parent
15c88cad37
commit
882de01461
|
|
@ -111,9 +111,7 @@ dictionary = {
|
|||
</div>
|
||||
<div class="grid_row_cell" style="width: 79%;">
|
||||
<div class="row_celltitles" id="tags">
|
||||
</div>
|
||||
<input class="text" id="tags_edit" style="width: 200px; display: none;" type="text" />
|
||||
<div id="tags_edit_errormsg" style="display:none"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="grid_rows even">
|
||||
|
|
|
|||
|
|
@ -131,11 +131,7 @@ dictionary = {
|
|||
</div>
|
||||
<div class="grid_row_cell" style="width: 79%;">
|
||||
<div class="row_celltitles" id="offerha">
|
||||
</div>
|
||||
<select class="select" id="offerha_edit" style="width: 202px; display: none;">
|
||||
<option value="false"><fmt:message key="label.no"/></option>
|
||||
<option value="true"><fmt:message key="label.yes"/></option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="grid_rows even">
|
||||
|
|
@ -145,9 +141,7 @@ dictionary = {
|
|||
</div>
|
||||
<div class="grid_row_cell" style="width: 79%;">
|
||||
<div class="row_celltitles" id="tags">
|
||||
</div>
|
||||
<input class="text" id="tags_edit" style="width: 200px; display: none;" type="text" />
|
||||
<div id="tags_edit_errormsg" style="display:none"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
|
|||
|
|
@ -39,8 +39,8 @@ function diskOfferingGetSearchParams() {
|
|||
function afterLoadDiskOfferingJSP() {
|
||||
initAddDiskOfferingDialog();
|
||||
|
||||
$readonlyFields = $("#tab_content_details").find("#name, #displaytext, #tags, #domain");
|
||||
$editFields = $("#tab_content_details").find("#name_edit, #displaytext_edit, #domain_edit");
|
||||
$readonlyFields = $("#tab_content_details").find("#name, #displaytext");
|
||||
$editFields = $("#tab_content_details").find("#name_edit, #displaytext_edit");
|
||||
}
|
||||
|
||||
function initAddDiskOfferingDialog() {
|
||||
|
|
|
|||
|
|
@ -39,8 +39,8 @@ function serviceOfferingGetSearchParams() {
|
|||
function afterLoadServiceOfferingJSP() {
|
||||
initAddServiceOfferingDialog();
|
||||
|
||||
$readonlyFields = $("#tab_content_details").find("#name, #displaytext, #offerha, #tags, #domain");
|
||||
$editFields = $("#tab_content_details").find("#name_edit, #displaytext_edit, #offerha_edit, #domain_edit");
|
||||
$readonlyFields = $("#tab_content_details").find("#name, #displaytext");
|
||||
$editFields = $("#tab_content_details").find("#name_edit, #displaytext_edit");
|
||||
}
|
||||
|
||||
function initAddServiceOfferingDialog() {
|
||||
|
|
|
|||
Loading…
Reference in New Issue