Base solution for your next web application

Activities of "sbenfares"

Hi,

I'm using ANZ with Asp.net Core & Jquery.

I would like to develop some feature on the Web.Public website with ABP framework (Call an AppService, use UI Busy Loading etc...) exactly as the Web.Mvc Project.

Is it easily possible ?

Thanks.

PS : Just for information i'm developping a Public JobBoard, Web.MVC is for BackOffice, Web.Public should be the Front Public JobBoard Pages.

Hi,

Sorry to ask this question here, but do you have an estimated release date for ANZ v7.0 including Metronic V6.0.3 integration ?

I should start a new project, maybe i should wait for your release...

Thanks :)

Question

Hello,

This is not a real support question, apologize, but it's a suggestion to improve ANZ in the future.

Do you know Grial UI Kit for Xamarin ?

https://grialkit.com/

They just released the V3.0 and it's pretty awesome, it would be great if you could include this UI Kit in ANZ in the future (or develop your own UI kit).

Thx

Question

Will the new Metronic version (v6.0.1) will be available in ANZ and in the Download Metronic Theme section ?

Hi, i'm using ANZ V5.6.2.

I would like if you'll add some UI Screens in the template to manage AbpTenantsNotifications / Subscriptions for each users.

It would be a great feature, and i can't find it in my version.

Thanks

Hi,

I would like to use Twilio for SMS, and for incoming messages (sending messages is ok).

https://www.twilio.com/docs/sms/tutorials/how-to-receive-and-reply-csharp

I need to have a Controller heriting from TwilioController (and not from PlatformControllerBase).

What is the best way to do it ?

I need to register my controller in Startup.cs ?

How to deal it ?

Thanks

Is it possible to have an example of file uploading in a form using Application Service Layer ?

I have a form with an input type=file, and in my jquery file :

` // My Application Service var candidatService = abp.services.app.candidat;

// Form submission $formInscription.submit(function (e) { e.preventDefault();

        if (!$formInscription.valid()) {
            return;
        }

        var formData = $formInscription.serializeFormToObject();

        // Call Service
        candidatService.register(formData)
            .done(function () {
                window.location.href = "/confirmation-inscription-candidat";
            });
    });

`

How can i retrieve my file in the candidatService ?

What should my inputDto be ?

I can't access the Request for getting the file...

Thanks :)

Hi,

I would like to register users with a form displaying a SetBusy indicator when the form is submitted.

In ANZ default project the register method is done in the controller, and there is no way to use Ajax for registering and display an setBusy animation.

What is the best practice to add a setBusy indicator for registration in Asp.net core + Jquery ?

Thanks

Hi,

When i do a "npm run create-bundles" for installing my project on a new pc i have this error :

Error: File not found with singular glob: D:/Src/A2JOB/A2JOB.Platform/src/A2JOB.Platform.Web.Mvc/node_modules/bootstrap-rtl/bootstrap-rtl.css

When i remove bootstrap-rtl from package-mapping-config i still have an error but with jquery-ui

And when i also remove jquery ui from package-mapping-config, then it's ok.

Can you help, what is wrong ?

Version of ANZ used is V.5.6

Hi,

I would like to add a custom "Link" field in a User Notification.

I've created a class MessageAndLinkNotificationData :

[Serializable]
    public class MessageAndLinkNotificationData : MessageNotificationData
    {
        public string Link { get; set; }

        public MessageAndLinkNotificationData(string message, string link) : base(message)
        {
            Link = link;
        }
    }

When i try to retrieve the data in my controller :

var dto = await _userNotificationManager.GetUserNotificationAsync(AbpSession.TenantId, userNotificationId);
var model = new MessageDetailViewModel(dto.Notification.Data.Properties["Message"].ToString(), 
                                                    dto.Notification.Data.Properties["Link"].ToString(), 
                                                    dto.Notification.CreationTime);

I have an error : ** 'NotificationData' does not contain a definition for 'Link' and no accessible extension method 'Link' accepting a first argument of type 'NotificationData' could be found **

What is the best practise to customise User Notification ?

Thanks

Showing 1 to 10 of 26 entries