Base solution for your next web application

Activities of "ismcagdas"

Answer

Hi,

We dont have such document but your steps are correct.

By the way you can use daterangepicker in singledate mode which is already included in solution. You can check it here <a class="postlink" href="http://fragaria.github.io/angular-daterangepicker/">http://fragaria.github.io/angular-daterangepicker/</a>

Hi,

Glad to hear that your problem is solved. Thanks for the information, we will fix it <a class="postlink" href="https://github.com/aspnetboilerplate/module-zero/issues/180">https://github.com/aspnetboilerplate/mo ... issues/180</a>

Answer

Hi,

If you want "simpleLogAuditingStore will be overridden by myAuditingStore", you need to register myAuditingStore in your module's PreInitialize method. Abp registers dependencies in Initialize method of modules.

In Castle Windsor, by default first regitered dependency wins unless you use "IsDefault()". I dont remember the scenario if you use "IsDefault()" more than once, but you can test it :)

You can check it here <a class="postlink" href="https://github.com/castleproject/Windsor/blob/master/docs/whats-new-3.0.md#component-can-now-force-being-default-for-its-services-without-needing-to-be-the-first-one-registered">https://github.com/castleproject/Windso ... registered</a>

Hi,

The error you are getting is probably related to Visual Studio. Try to close and reopen visual studio and run Add-Migration code again.

Hi,

This is the expected behaviour.

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();
Showing 12701 to 12710 of 12766 entries