Hi,
You can access the latest metronic theme here <a class="postlink" href="https://github.com/aspnetzero/aspnet-zero/releases/download/v1.8.0.0/metronic-v4.5.4.zip">https://github.com/aspnetzero/aspnet-ze ... v4.5.4.zip</a>.
If you want and older version of metronic, please take a look at ASP.NET Zero relases under github <a class="postlink" href="https://github.com/aspnetzero/aspnet-zero/releases">https://github.com/aspnetzero/aspnet-zero/releases</a>.
Hi,
This is the right way actually. Can you get the return value of this method and see if there is an error message ?
var result = await _userManager.ChangePasswordAsync(1, "123qwe", "blabla");
Hi,
I think this problem is not related to ui-jq. I have tried your syntax and it worked for me.
ng-options="languageName.value as languageName.displayText + ' | '+ languageName.value for languageName in vm.languageNames"
It might be a browser caching problem. Can you check that ?
Hello,
Yes it is possible. You can define another ViewBase for your MainApp like.
public abstract class MainAppWebViewPageBase<TModel> : AbpWebViewPage<TModel>
{
protected AbpZeroTemplateWebViewPageBase()
{
LocalizationSourceName = "MainApp"
}
}
Then you can configure it in the web.config file under "/App/MainApp" directory like (Add if it does not exist)
<system.web.webPages.razor>
<pages pageBaseType="MainAppWebViewPageBase">
....
</pages>
</system.web.webPages.razor>
Then it should work like you expected.
I hope this helps.
Hi,
This is not angular version actually. But you can use it in Angular by angular ui's uiJq directive. Take a look at here <a class="postlink" href="https://github.com/angular-ui/angular-ui-OLDREPO/tree/master/modules/directives/jq">https://github.com/angular-ui/angular-u ... ectives/jq</a>.
In our code
ui-jq="selectpicker"
does the trick.
Or for a full angular compatible solution you can use angular ui's ui-select. You can find detailed information about ui-select here <a class="postlink" href="https://github.com/angular-ui/ui-select">https://github.com/angular-ui/ui-select</a>.
I hope these can help you :)
Hi,
It's bootstrap select by Silvio Moreto. You can check it's github repository <a class="postlink" href="https://github.com/silviomoreto/bootstrap-select">https://github.com/silviomoreto/bootstrap-select</a>.
Hi,
You need to download Targeting Pack for development. Can you try to download .Net Framework Targeting Pack 4.6.1 and try opening project again ?
Hi,
public class FilterRoutesDocumentFilter : IDocumentFilter
{
public void Apply(SwaggerDocument swaggerDoc, SchemaRegistry schemaRegistry, IApiExplorer apiExplorer)
{
swaggerDoc.paths["/api/services/app/role/GetRoleForEdit"].post = null;
}
}
I hope these help.
Hi,
You can check this topic #448@6bab272b-0a26-41ea-b1f4-6c3381bffea0.
As a short answer, after adding nuget package you need to enable cors in WebModule class like
GlobalConfiguration.Configuration.EnableCors();
Also you need to use EnableCors attribute in app service interface for dynamic api methods not in app service itself.
Hi,
Zero is not defined from beginning for http verbs other than POST. Because of that DynamicApiControllerBuilder is not using convetional verbs right now.
You can add ".WithConventionalVerbs()" to dynamic api controller builder configuration of your project but it might cause problems.
We can not guarantee that it works.