CA-164800: New Storage wizard: hide CIFS option for old servers and not licensed pools

-Making CIFS radio button invisible (instead of visible but disabled) when CIFS is restricted (license)

Signed-off-by: Gabor Apati-Nagy <gabor.apati-nagy@citrix.com>
This commit is contained in:
Gabor Apati-Nagy 2015-03-23 16:01:25 +00:00
parent e0f4b60858
commit b8d3ef2bd4

View File

@ -90,7 +90,7 @@ namespace XenAdmin.Wizards.NewSRWizard_Pages
{
radioButtonCslg.Visible = !Helpers.CreedenceOrGreater(Connection); //Hide iSL radio button for Creedence or higher (StorageLink is not supported)
radioButtonCifs.Enabled = !Helpers.FeatureForbidden(Connection, Host.RestrictCifs);
radioButtonCifs.Visible = !Helpers.FeatureForbidden(Connection, Host.RestrictCifs);
foreach (var radioButton in RadioButtons)
{