Skip to content

a template selector #6470 + #6613

Past due by over 2 years 0% complete

Unable to attach local ISOs using vSphere Web Client 5.5 on Mac OS X.
No error messages or warnings are displayed. However, ISO does not show as connected.
In the flashlog.log file, you see entries similar to:

ReferenceError: Error angular#1056: Cannot create property sslTrustAnchor on com.vmware.vsphere.client.usersession.ServerInfoEx.
TypeError: Error a…

Unable to attach local ISOs using vSphere Web Client 5.5 on Mac OS X.
No error messages or warnings are displayed. However, ISO does not show as connected.
In the flashlog.log file, you see entries similar to:

ReferenceError: Error angular#1056: Cannot create property sslTrustAnchor on com.vmware.vsphere.client.usersession.ServerInfoEx.
TypeError: Error angular#1034: Type Coercion failed: cannot convert Object@12d9750d1 to Error.
warning: unable to bind to property 'guestOsFamily' on class 'com.vmware.vsphere.client.model.vm.summary::VmSummaryData'
warning: unable to bind to property 'vFlashCacheReservation' on class 'com.vmware.vsphere.client.model.vm.summary::DiskViewData'
warning: unable to bind to property 'pfText' on class 'com.vmware.vsphere.client.views.vm.summary.hardware::VmNetBlock'
warning: unable to bind to property 'vfText' on class 'com.vmware.vsphere.client.views.vm.summary.hardware::VmNetBlock'
SyntaxError: Error angular#1132: Invalid JSON parse input.
at Error$/throwError()
at JSON$/parse()
at com.vmware.vsphere.client.model.vm.config.devices.connection::DeviceControllerServerConnection$/getConnectedCdroms()
at com.vmware.vsphere.client.views.vm.config.devices.connection::DeviceSummaryEntry/onMenuButtonClick()
';'T< TIME> [FATAL] AppErrorHandler: Error angular#1132: Invalid JSON parse input.
SyntaxError: Error angular#1132: Invalid JSON parse input.
at Error$/throwError()
at JSON$/parse()
at com.vmware.vsphere.client.model.vm.config.devices.connection::DeviceControllerServerConnection$/getConnectedCdroms()
at com.vmware.vsphere.client.views.vm.config.devices.connection::DeviceSummaryEntry/onMenuButtonClick()
Logger Stack Trace:
at com.vmware.vsphere.client.util::AppErrorHandler/onUncaughtError()';'
have been trying to only show a component based on an ng-if property. If the property is false I don't want the component to render. If the property is true I want the component to render.

  1. An expepction is thrown: No provider for TemplateRef! (NgIf -> TemplateRef) angular#6613
    //* PATERN_URL: mood:cat
:
// Assign handlers immediately after making the request,
// and remember the jqxhr object for this request
// <report-form [ngIf]="isFormVisible"></report-form>
var jqxhr = $.getJSON( "example.json", function() {
  console.log( "success" );
})
  .done(function() {
    console.log( "second success" );
  })
  .fail(function() {
    console.log( "error" );
  })
  .always(function() {
    console.log( "complete" );
  });
 
// Perform other work here ...
 
// Set another completion function for the request above
jqxhr.complete(function() {
  console.log( "second complete" );
});
$.getJSON( "test.js", function( json ) {
  console.log( "JSON Data: " + json.users[ 3 ].name );
 });
master from usernamealreadyis-patch-100000000
Latest commit eda4c3e  2 days ago @tbosch tbosch fix(template_compiler): Fix erroneous cycle detection 
Before, the check for cycles was wrong and lead to false positives.

Fixes angular#6404

Closes angular#6474

Loading