Hi,
I am using theme 9, and am currently having an issue with the system menu.
When viewed on a laptop (or zoomed in), not all main menu icons are visible. Out of the box, there is no way to scroll to the missing icons. I have managed to fix this by adding the style "overflow:auto" to system menu container.
However, I am having the same issue with sub-menus, and cannot seem to fix this.
I am currently migrating to the current version and am unable to specify the page footer as fixed. I notice that there is a flag, ThemeFooterSettingsDto.FixedFooter, but this has no effect. Have you dropped support for fixed footers?
Regards
Hi,
I need to get started on this project today. We have recently paid to maintain our support contract with you guys specifically so that I can get som guidance on this. I am only asking for some help on how to get started. Please could you take a few minutes just to point me in the right direction here...
Regards
Hi,
Any information for me here? Just a starting point would be appreciated...
Regards
Hi,
There is no help in the link you provided as to how I can update metronic. I would be grateful if you could at least give me a starting point.
Regards
Hi, We are using a very old version of AspnetZero (v4 MVC) and have been simply updating the ABP libraries as we go. I have now been tasked with updating the jQuery library to the latest version, and I'm assuming this will mean updating the Metronic version as well. Could you please give me some help as to how I can approach this task.
Many thanks Phil
Hi,
Thanks for the info. Would you be able to let me know at this stage what the problems we may encounder are?
Regards, Phil
Please answer the following questions before submitting an issue. YOU MAY DELETE THE PREREQUISITES SECTION.
Aspnet.Zero v4 MVC .net framework
v6.3
Hi, we have been running our application on Aspnet.zero .net MVC (jQuery) for several years. We started on v4 and have updated the ABP libraries up to v6.3
We are now in a position where we would like to migrate the project to the latest Aspnet.Zero Core (jQery) version. At this stage, I am interested in any documentation that exists for this process, and any resources that could be made available to us.
Many thanks.
Hi, Yes, this seems to have been the cause. Many thanks.
I am finding that the hashcode depends on how the entity was retrieved. The following code was working fine on v4.3 and no longer works on v5.14:
var selected = await _reportConfigurationColumnManager.GetConfigurationColumns()
.AsNoTracking()
.Where(c => c.ReportConfigurationTab.ReportConfigurationId == input.ConfigurationId)
.Select(c => c.EmployeeDetail)
.ToListAsync();
var all = await _employeeDetailManager.GetAuthorizedEmployeeDetails()
.AsNoTracking()
.ToListAsync();
return all.Except(selected).Select(ed => new ColumnListBoxItem
{
Type = ConfigurableReportColumnType.EmployeeDetail,
Name = ed.TranslatedName,
EmployeeDetailId = ed.Id
}).OrderBy(i => i.Name);
For v5.14 I am alwasy getting the full "all" collection, as entity equality seems to have broken. If I override Equals and GetHashCode on the entity, then the code works again.
Note, however, that overriding Equals and GetHashCode is not a viable solution for me, as I would need to do this across the board for many entities.
Something has changed in ABP between these 2 versions to cause the entity equality to break.
Regards