Base solution for your next web application

Activities of "ismcagdas"

Hi,

Actually, your code seems correct. Can you check value of categoryId on client side ? You can check ajax request's posted data from Chrome's developer console.

It seems the only point can cause this problem.

Hi,

Why don't you use document ready event of jquery on your view ?

Hi,

You can take a look at these documentations.

To integrate hangfire <a class="postlink" href="http://aspnetboilerplate.com/Pages/Documents/Hangfire-Integration">http://aspnetboilerplate.com/Pages/Docu ... ntegration</a>

For recurring jobs, see background workers section <a class="postlink" href="http://aspnetboilerplate.com/Pages/Documents/Background-Jobs-And-Workers">http://aspnetboilerplate.com/Pages/Docu ... nd-Workers</a>

Hi,

Where do you run these lines ? In an application service ? Can you share your method definition including these lines ?

Hi,

User is not notified when he/she is activated. You can do it for your self.

Hi,

No problem at all :)

I believe the problem is related to Report entity in JobEditDto. You shouldn't use entities in dtos. You can take a look at this document for detailed explanation <a class="postlink" href="http://aspnetboilerplate.com/Pages/Documents/Data-Transfer-Objects">http://aspnetboilerplate.com/Pages/Docu ... er-Objects</a>.

Instead of Report entity, you should create a dto class and use it in your JobEditDto.

By the way, you can also use

[AutoMap(typeof(Job))]

instead of these two lines

[AutoMapFrom(typeof(Job))]
[AutoMapTo(typeof(Job))]

It does the two way mapping.

Hi,

Can you share your CreateOrUpdateJobInput class ?

Hi,

Domain services are not transactional by default. You can resolve IUnitOfWorkManager in your test class and then start a transaction by yourself.

Hi,

On the IIS Manager, under feature delegation, Authentication should have read/write delegation. After that, you will be able to see login page.

But i didn't test the rest with ldap login, please test and share your result :).

Hi,

By the way, javascript error caused by missing semi-colon at the end of serializeFormToObject function definition. It's solved in the module zero repository on github.

Showing 12661 to 12670 of 12775 entries