@ismcagdas Our question is for Abp related data cache not the entity data. Ex: Permissions, settings etc. When we use Redis Cache everything gets slower. and updating ABP packages can be huge change which we can not do right away. so any other suggestion for it?
and thanks for SettingManager ref, we will look into it.
@ismcagdas
Yes, AddAzureSignalR is executed and breaking in LoadStopCoreModule.PostInitialize.
Hi
Permission class is not part of actual entities in database. so how this will work?
Provided solution is working, thanks
We found solution to use url https://localhost:44302/swagger not https://localhost:44302/swagger/ui
hi, Solved this issue by ignoring the validation for the editor with follong lines.
_$form.validate({ ignore: ".ck-editor *" });
Hi,
I have used the SummerNote Editor to take input.In the JS have initialize the SummerNote with following lines.
$('#editor').summernote({ height: "200px" });
Now whenever updating the text of editor and focus out event is occur for the editor it's give above jquery error.
Then after I have commented the line (_form.validate()) that validate the form,then error goes out.
Also try to put editor out side the,it is also working.
I don't event put any kind of validation for this field.I think it is firing some kind of validation for the editor.
Entity is having IMayHaveTenat.
We want our super admin/host admin to create some records for tenant. So yes entity belongs to Tenant but can be managed by Host Admin. And so if Host Admin made any change or created it for tenant, we need to know the correct UserId.
We finally found these steps to be followed to get project working:
2)On command prompt npm install yarn npm install gulp
3)After installation completes open command prompt from Web.Mvc folder first run npm run create-bundles command.
This command for the development purpose it replaces js file with min.js file and creates minified file butnot actually minify the js file in the development process. It will create bundles in the "wwwroot\view-resources\Areas\App\Views_Bundles" path.
In case it gives error run yarn and then run npm run create-bundles
But we would like to know is there any way in local machine we can use normal file instead of min. As "npm run create-bundles" is too slow even on second run.