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 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?

Some of my clients want to use their domain and theme. How can I make my application to detect tenancy name and theme by domain (not subdomain).

I want create MPA for admin site to use Metronic theme and SPA for client site using angular 2. How can I do it with ASP.Net Zero?

I've downloaded the latest version of AspNet Zero Core. Title and button name on the popup is not localized. Please find attached image for more information. How can I resolve this issue?

Showing 11 to 16 of 16 entries