Base solution for your next web application

Activities of "alirizaadiyahsi"

Could you try this?

<div class="modal-body">
    <p [innerHtml]="l('DataProvider_Description')">
    </p>
</div>

Hi @ramezani583,

could you share some code that related these errors? And also did you check *.Host/App_Data/Logs/Logs.txt ?

Hi @BobIngham,

did you try to translate it using classic method like this?

<text name="ChatUserSearch_Hint">
    {{l('ChatUserSearch_Hint')}}
</text>

This should work. There are examples in localization xml files. For example check 'ChatUserSearch_Hint' in *.Core/Localization/YourProjectName/YourProjectName.xml

Hi @ajayak

I wanted to check whether the notifications system in AspNetZero .Net Core solution with Angular is real time?

Yes

Does the AspNetZero uses SignalR?

Yes

Detailed document here: <a class="postlink" href="https://aspnetboilerplate.com/Pages/Documents/Notification-System#real-time-notifications">https://aspnetboilerplate.com/Pages/Doc ... ifications</a>

It is not clear what is the problem. What you mean by saying "I tried everything, read all posts but no luck. "? What did you try and what errors did you get? Deployment document is here: <a class="postlink" href="https://aspnetzero.com/Documents/Development-Guide-Angular#deployment">https://aspnetzero.com/Documents/Develo ... deployment</a>

Hi @brallierc, I tried it in edge with no errors? Could it be about edge version?

Hi @ChEhrhard, what errors are you getting? Did you check *.Host/App_Data/Logs.txt or any console error? And which steps did you apply to deployment?

Hi @minwei,

could you check this: <a class="postlink" href="https://github.com/aspnetzero/aspnet-zero-core/issues/664">https://github.com/aspnetzero/aspnet-ze ... issues/664</a>

Glad it helped!

Hi @rvanwoezik,

you can change modal behavior. There are lines in *.Web.Mvc\wwwroot\Common\Scripts\ModalManager.js

_$modal.find('.modal-body').keydown(function (e) {
                    if (e.which === 13) {
                        if (e.target.tagName.toLocaleLowerCase() === "textarea") {
                            e.stopPropagation();
                        } else {
                            e.preventDefault();
                            _saveModal();
                        }

                    }
                });

you can add summernote editor element into this keydown event. For example, I mean something like this:

...
    if($(e.target).arrt('class')=='note-editor')
...
Showing 121 to 130 of 369 entries