Base solution for your next web application

Activities of "ianmark89"

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?

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?

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

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.

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?

Question

Sorry for duplicating post. I've posted in wrong forum. #1914

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 seat plan inside modal like attached image, the chart is using for selecting seat when booking but I am not good at front end. Can you give me some advice like which library can I use for rendering seating chart?

I'm using ASP.Net Core version.

Thanks.

When user does not have permissions to access Users controller, server responses {"result":null,"targetUrl":null,"success":false,"error":{"code":0,"message":"Required permissions are not granted. At least one of these permissions must be granted: Pages.Administration.Users","details":null,"validationErrors":null},"unAuthorizedRequest":true,"__abp":true}

It's working as expected if I update public async Task<ActionResult> Index()

to

public ActionResult Index()

After upgrading chrome to the latest version (54), I've got error when call app services to postback to server. Other browser is fine.

"details": "The following errors were detected during validation.\r\n - input is null!\r\n",

Showing 1 to 10 of 16 entries