Base solution for your next web application

Activities of "ianmark89"

Question

Hi,

I found IsPhoneNumberConfirmed column in database. Does the current system support phone verification? I want to let user register by phone, can you please give me some idea about this function?

Hi,

I want to create combobox inside cell of Jtable, how can I do that? I've tried following <a class="postlink" href="http://jtable.org/ApiReference/FieldOptions#fopt-options">http://jtable.org/ApiReference/FieldOpt ... pt-options</a> but the cell is blank.

I received the email and responded. Sorry for late reply.

I've dropped the foreign keys and it works. Thanks for your supporting.

I tried to reproduce with your steps but it stills "Are you sure?", no matter what I've changed in database or xml files.

Is there any updates? Did you try to change text of key "AreYouSure"? And it still shows "Are you sure?", since this text is gotten from other source.

I've implemented function to detect tenant by domain name, but I got error when logging with social account like facebook.

The INSERT statement conflicted with the FOREIGN KEY SAME TABLE constraint "FK_dbo.AbpUsers_dbo.AbpUsers_CreatorUserId". The conflict occurred in database "***", table "dbo.AbpUsers", column 'Id'.

This issue is also happened with SubdomainTenancyNameFinder. I can login/ register with external login by entering Tenancy name manually.

Thanks for you supporting. I did workaround by creating JavaScript object manually.

I have a form with viewmodel as bellow

<form role="form" novalidate class="form-validation"> @Html.TextBoxFor(m => m.Class1.TestClass11) @Html.TextBoxFor(m => m.Class1.TestClass12) @Html.TextBoxFor(m => m.Class2.TestClass21) @Html.TextBoxFor(m => m.Class2.TestClass22)

&lt;button id=&quot;btnSave&quot;&gt;Save&lt;/button&gt;

</form>

ViewModel public class ClassViewModel { public Class1 Class1 { get; set; }

    public Class2 Class2 { get; set; }
}

Appservice

public async Task TestCreate(CreateInput input) { }

public class CreateInput
{
    public Class1 Class1 { get; set; }

    public Class2 Class2 { get; set; }
}

When I post back to app service, the input is null

input = _$form.serializeFormToObject(); _testService.TestCreate(input)

I know the issue caused by redundant prefix of serialized object { Class1.TestClass1 ="", Class2.TestClass2 ="" } How can I resolve this issue?

No, I did not delete default language. I've just added new language and set it as default. I've tried to run the project which I downloaded from the start, then tried to change text for key AreYouSure to "test", but sweet alert still display as "Are you sure?".

Showing 21 to 30 of 38 entries