Base solution for your next web application

Activities of "ismcagdas"

Answer

Hi,

I think it should be used like this

uib-popover-html="tar.day1"

{{tar.day1}} does not seem to work.

In your case you need a prefix text, so you can use it like this.

Define a function to return html in your controller.

vm.getTimeHtml = function(day1){
   return 'Given By: ' + day1;
}

Then use it like this

uib-popover-html="getTimeHtml(tar.day1)"
Answer

Hi,

So you are working with classic MVC application. Then you can delete the App folder marked in the screenshot.

just in case, backup your project before this operation :)

Hi,

You can disable source maps for css & javascript in the chrome's developer console settings.

<a class="postlink" href="https://developer.chrome.com/devtools/docs/settings">https://developer.chrome.com/devtools/docs/settings</a>

Answer

Hi,

There are two applications in the project. One is Single Page Application and the other one is Multi Page application. Application#/tenant/dashboard is for single page application and mpa/dashboard is for the Multi Page application.

Functionality of these two application are same but they have some differences in the look.

You should choose one of them to build your application and delete the other section if you are building a real life application to prevent such confusions.

Hi,

You can change it like this

var defaultTimezoneName = String.Format("{0} [{1}]", L("Default"), defaultTimezone.DisplayName);

We are not trying to use this syntax because it does not work on vs 2013 but we missed it this time. We will change it on the next release as well.

Hi,

You might have two Id fields in one of your entities.

If it is not the case, can you share a bit more part of your controller code. And which versions of ABP do you use ?

Hi,

Did you check this issue before <a class="postlink" href="https://github.com/aspnetboilerplate/module-zero/issues/162">https://github.com/aspnetboilerplate/mo ... issues/162</a> ? It has a gist link for impersonation example.

Hi,

Can you share your Login action in Account controller. And how do you call your login action from javascript ? Can you share that code as well.

Hi,

I assume that you want to use it on the multi page side. For bootstrap datetime picker it's explained here <a class="postlink" href="https://eonasdan.github.io/bootstrap-datetimepicker/Installing/">https://eonasdan.github.io/bootstrap-da ... nstalling/</a>. You just neet to download and include missing scripts and css files.

You can also try bootstrap daterange picker which is already included in the project <a class="postlink" href="http://www.daterangepicker.com/">http://www.daterangepicker.com/</a>. It has a singleDatePicker property for using it like a datetime picker.

$('input[name="birthdate"]').daterangepicker({
        singleDatePicker: true,
    }

Please let me know if you have any problem.

Answer

Hi,

Identity framework does not allow that by default. You can change it's behaviour like this in hte constructor of your UserManager class.

UserValidator = new UserValidator<User, long>(this)
{
	AllowOnlyAlphanumericUserNames = false
};
Showing 12581 to 12590 of 12723 entries