Base solution for your next web application
Starts in:
01 DAYS
01 HRS
01 MIN
01 SEC

Activities of "p.j.keukens"

Hi,

I was looking for a way to send a realtime message from the .net core backend to the client so I can change the UI when the message is received. I don't want the message to go into the notifications. The message is basically a progress notification.

I looked into the Realtime Notification but couldn't get that to work.

A small example of how to achive this would be appreciated.

Thanks Patrick

Hi,

I'm using v6.9.0 of aspnet zero on .net core.

I was setting up a form for the input of a text field with a min and max length. When the form is validated on submission, the jquery validation messages are not localized. When I add a number input onto the form, jquery validation also doesn't take the current culture into account. My app is in dutch which has a , for decimal separator and a . for thousand separator. But jquery validation doesn't take the culture into account.

Aspnet zero is fully localized right? So what am I missing?

Hi,

When there is only one action in the action menu, in my case an open button. The action button is not shown, it only shows when there are two items in the action menu.

cause: datatables.record-actions.js

var _createRowAction = function (record, field, tableInstance) {
        if (field.items && field.items.length > 1) {
            return _createButtonDropdown(record, field, tableInstance);
        } else if (field.element) {
            var $singleActionButton = _createSingleButton(record, field);
            if ($singleActionButton != "") {
                return $singleActionButton.clone(true);
            }
        }
        return "";
    }

change

if (field.items && field.items.length > 1) {

to:

if (field.items && field.items.length > 0) {

Hi,

I've found an error in the application which can be reproduced latest version. Underneath are the steps to reproduce:

  1. Log in as a host user
  2. Change password and save new password
  3. Press logout button

It's probably because the user is not authenticated anymore and needs to login again. Maybe it's better to redirect the user to the login page after changing the password.

Hi,

When DataAttributes on a DTO are validated the error messages are sent back to the client and shown in a sweetalert. But there is no localization file for my default language Dutch . I can see that the localization files are in aspnetboilerplate/src/Abp.Web.Common/Web/Localization/AbpWebXmlSource/ and that dutch is not there. How can I add my language file to the list? I tried adding them to the xml localization file in my project but that didn't work. So how do I get them in my language? Do I have to include the Abp.Web.Common project in my solution and then add the file and change all the references to the project or is it possible to override it somehow?

cheers Patrick

Hi I have a question,

I have a form in a modal and there are input fields with numeric values. In Holland we use a comma as decimal separator like 23,34. I transform the form to an object using serializeFormToObject(); The result that's get posted to the appservice is:

{"Id":"9644f5f2-6146-404e-c629-08d6bc1eb906","PremiumBase":"12,23"}

Then the appservice has a class as input where PremiumBase is defined as a decimal. But when look at the value of PremiumBase in AppService the value is 1223 so the comma is lost as it is probably seen as a group separator. How can I solve this?

Best regards,

Patrick

Hi,

I'm using ASPNET ZERO (paid version) the .net core 2.2 and jquery version and I'm running into a weird problem.

When I run the application and login and then press a menu item quickly, an error message is shown (sweetalert, without any details) shortly and then the page is loaded. This only happens in the beginning so it looks like something isn't ready loading, but it is anoying and wouldn't bee a good thing in a production system.

I did not see any error's in the console or in the webserver log so I have no idea where it's coming from. This happened in the default demo template downloaded from the website. I did run yarn and update bundles.

I would like to know what's causing it and how to solve it.

Best regards Patrick

Hi,

I'm using ASPNET ZERO (paid version) and then the .net core 2.2 + jquery version. At the moment I'm experiencing a problem with the user layout of the table views, whichgives a different layout every now and then. The problem shows in Firefox, chrome and Edge. When I go to the users page for example sometimes above the table their apaers a small search box on the right and the number of results selector on the left. At other times the footer of the table looks different then the normal version where pagination should be left and the number of results selecter and the number of results should be right. Look at the footer in the image underneath. (I don't have a screenshot of the search bar at the top of the table). I did not change anything from the downloaded demo template, just ran yarn and update bundles.

Then on the samepage the layout of the searchbar is off as well. It looks like the inside is bigger then the border and the right image moves over the border on the right. The problem exists in Firefox, Chrome and Edge. I did not change anything from the downloaded demo template, just ran yarn and update bundles. See the image below:

Please advice for a solution,

Patrick

Showing 11 to 18 of 18 entries