Base solution for your next web application

Activities of "ismcagdas"

Answer

Hi,

Yes you need a xml localization file. Please take a look at "Getting A Localized Text" section of localization documentation <a class="postlink" href="http://aspnetboilerplate.com/Pages/Documents/Localization">http://aspnetboilerplate.com/Pages/Docu ... calization</a>.

Hi,

You definition and call seems correct.

Current user might not have required permission. Can you check by calling "$state.get()" in vm.maintainParamItems to see if "parameterItems" state is registered or not ?

Hi,

You must refresh your selectpicker. Implement something similar to

ng-change="vm.languageChanged()"

in language creation modal.

just call this code in change event of select picker similar to language creation modal.

setTimeout(function () {
	$('#TenantEditionSelectionCombobox').selectpicker('refresh');
}, 0);

Hi,

You are right, default url must be "http://localhost:6240". Normally "abp.appPath" variable must have the value "/". Can you share the value of "abp.appPath" in your application ?

Hi,

Just set Clock.Provider to your implementation in Global.asax or your web module's initialize method.

Clock.Provider = new LocalClockProvider();

Hi,

If your entity implements IHasCreationTime, ABP automatically sets CreationTime to Clock.Now. See SetCreationAuditProperties method here <a class="postlink" href="https://github.com/aspnetboilerplate/aspnetboilerplate/blob/a7cc09f5b1541b8543b91c6e74134a06d09c6ea7/src/Abp.EntityFramework/EntityFramework/AbpDbContext.cs">https://github.com/aspnetboilerplate/as ... Context.cs</a>.

If you look at the Clock class in ABP(<a class="postlink" href="https://github.com/aspnetboilerplate/aspnetboilerplate/blob/0762989fcd0493e8dc55a50a7443e891d1bffe1f/src/Abp/Timing/Clock.cs">https://github.com/aspnetboilerplate/as ... g/Clock.cs</a>), you will see

public static DateTime Now
{
    get { return Provider.Now; }
}

So, if you change Clock.Provider with your implementation, you can achieve what you want.

I hope this helps.

Hi,

Please take a look at this topic Hi,

Please take a look at this topic <a class="postlink-local" href="http://forum.aspnetboilerplate.com/viewtopic.php?f=6&t=325&p=1053&hilit=utc#p1053">viewtopic.php?f=6&t=325&p=1053&hilit=utc#p1053</a>. And this issue on ABP <a class="postlink" href="https://github.com/aspnetboilerplate/aspnetboilerplate/issues/40#issuecomment-92051308">https://github.com/aspnetboilerplate/as ... t-92051308</a>.

Basically you need to change Clock.Provider with your implementation of IClockProvider.. And this issue on ABP <a class="postlink" href="https://github.com/aspnetboilerplate/aspnetboilerplate/issues/40#issuecomment-92051308">https://github.com/aspnetboilerplate/as ... t-92051308</a>.

Basically you need to change Clock.Provider with your implementation of IClockProvider.

Hi,

Don't you create your ApplicationService with dependency injection ? In that way, repositories will be created by dependency injection too.

Hello,

Yes, in this solution "John Doe" needs to register in all the Tenants that he is working for/with :).

Hi,

It should work as you expected. Can you share your FormLayout entity definition ?

Showing 12491 to 12500 of 12551 entries