Well, after thinking, about it, TenantManager has email template, and UserEmailer needs it, so I created circle myself.
How would I break it?
I did manual update with, is there other way?
public partial class MySettings : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AlterColumn<string>(
name: "Value",
table: "AbpSettings",
nullable: true,
maxLength: 4000,
oldClrType: typeof(string),
oldMaxLength: 2000,
oldNullable: true);
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.AlterColumn<string>(
name: "Value",
table: "AbpSettings",
nullable: true,
maxLength: 2000,
oldClrType: typeof(string),
oldMaxLength: 4000,
oldNullable: true);
}
}
thanks, the key was to use in onShown method;
@alper - thanks for an update
do you know the release date for the next release? thank you.
Subscription feature is not a subscription but one time payment. A lot of functions are missing:
Any plans to make a real subscription? Otherwise, you should call it one time payment.
any direction on this topic? or it died?
Thanks for sharing. Do you plan to add client code as well?
@ismcagdas - thanks, that is where I got the code. In modal dialogs it does not work as tab not initialized on load, on init, etc. test for yourself, the code below does not work in modal dialog. this.staticTabs.tabs is NULL
import { Component, ViewChild } from '@angular/core';
import { TabsetComponent } from 'ngx-bootstrap';
@Component({
selector: 'demo-tabs-manual',
templateUrl: './manual.html'
})
export class DemoTabsManualComponent {
@ViewChild('staticTabs') staticTabs: TabsetComponent;
selectTab(tab_id: number) {
this.staticTabs.tabs[tab_id].active = true;
}
disableEnable() {
this.staticTabs.tabs[2].disabled = !this.staticTabs.tabs[2].disabled;
}
}
See this link, read strict mode <a class="postlink" href="https://developers.facebook.com/docs/facebook-login/security/#strict_mode">https://developers.facebook.com/docs/fa ... trict_mode</a>
and here screenshot from my FB portal: <a class="postlink" href="https://gyazo.com/985d4bc36e46bf12eb45be2fd62bce3f">https://gyazo.com/985d4bc36e46bf12eb45be2fd62bce3f</a>
March is just a few days away.
@ismcagdas - according to FB in March unless you configure and authorize exact return url, oath will not work.
While what I requested is a new feature to your framework, IT MUST HAVE for facebook and google around the corner to work.