Hi,
great - that works! Thank you very much!
Fixing the problem of the missing dropzone files did result in fixing the problem with LazyLoad. Everything works fine now. Thank you!
Hi,
I get one error I can imagine why and another one I am completly not sure about:
angular.min.js:68 Uncaught Error: [$injector:modulerr] Failed to instantiate module app due to:
Error: [$injector:modulerr] Failed to instantiate module oc.lazyLoad due to:
Error: [$injector:nomod] Module 'thatisuday.dropzone' is not available! You either misspelled the module name or forgot to load it. If registering a module ensure that you specify the dependencies as the second argument.
The module oc.lazyLoad is something I have never touched. The javascript file is embedded and accessible. Do you have an idea what I can check?
I will try to fix the dropzone error by including the javascript files needed by the module - I have missed to include them as project files, just copied them into the folder.
Thank you!
We get the same error after our first publishing to the productive web server:
angular.js:4526Uncaught Error: [$injector:modulerr] http://errors.angularjs.org/1.5.0/$injector/modulerr?p0=app&p1=Error%3A%20%…3A%2F%2Flocalhost%2FCastingDatenbank%2FScripts%2Fangular.min.js%3A20%3A449)
How did you fix your problems - I would be very happy if you can give me a hint. Thank you very much!
OK, thank you!
What a stupid mistake! I am very sorry for stealing your time! Thank you very much!
using Abp.Domain.Entities;
using Abp.Domain.Entities.Auditing;
using MyDatabase.JobRequests;
using System.ComponentModel.DataAnnotations.Schema;
namespace MyDatabase.Infosheets
{
[Table("CdbJobsInfosheets")]
public class RequestInfosheet : FullAuditedEntity<long>, IMustHaveTenant
{
[ForeignKey("JobRequestId")]
public virtual JobRequest JobRequest { get; set; }
public virtual long JobRequestId { get; set; }
public virtual long InfosheetSourceId { get; set; }
public virtual string InfosheetName { get; set; }
public virtual int TenantId { get; set; }
public RequestInfosheet()
{
}
}
}
Thanks a lot!
Could you give me another advice concerning the navigation and routing topic please? We want to use the "Left Tabs" from Metronic UI Features ([http://keenthemes.com/preview/metronic/theme/admin_4_material_design/ui_tabs_accordions_navs.html])) but if we do so and use the links with the leading #-sign it seems that the controller tries to detect the target and opens the dashboard that has the definition "$urlRouterProvider.otherwise".
Is it not possible to use the left tabs navigation? Thanks!
Perfect - thank you very much!
Could you please tell me what I have to do to control which page is displayed as entry point in my SPA application? I don't want the Frontend Example to be the entry point, I would like the Tenant Dashboard to be the first page for logged in users and the Login Page for user who aren't logged in.
Thanks in advance!
You are right - it works, I am sorry - it was just bad database permission. Thank you very much!