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

Activities of "moustafa"

i did excactly as you told me to do but unfortunately i got the same error

Actually i succeed to change max length property as previous reply but still got an error after registration

await _unitOfWorkManager.Current.SaveChangesAsync();

Error Message Validation failed for one or more entities. See 'EntityValidationErrors' property for more details. Error Details Name: The field Name must be a string with a maximum length of 32.

Thank you fro your help that would be the code

[code]

        protected override void OnModelCreating(DbModelBuilder modelBuilder)
        {
            base.OnModelCreating(modelBuilder);
            modelBuilder.Entity<User>().Property(t => t.Name).HasMaxLength(50);
            modelBuilder.Entity<User>().Property(t => t.Surname).HasMaxLength(50).IsOptional();
        }

[/code:2jfgtrv2]

Hello Can anyone tell me the easiest way to Change String Max length of Name & Surname in AbpUser<TUser> from 32 to 100 ?

Hello everyone i read on your road map that your are going to provide the system with a basic cms and i wondering which text editor you are planning to use

can you please recommend for me a rich text editor to use in my spa application that support image uploading and has many properties to set to uploaded images also i need a file uploader that support multiple files

formate required by kendo ui [http://demos.telerik.com/kendo-ui/service/Northwind.svc/Customers?$callback=jQuery112302619818966497245_1462638475848&%24inlinecount=allpages&%24format=json])

for abp i can't display the format provided by ABP web api services but i use Odata to accomplish the task

i hope that help

<cite>Paddyfink: </cite> Hello, I'm using kendo ui with ABP.

If you have a SPA application, don't use kendo asp.mvc wrapper but kendo ui angular directives

Actually i tried to use kendo ui angular directives but i faced a problem related to json format as the json returned by ASPNETZERO not match the json format expected from Kendo ui , can you please help me with that issue

Hello Suppose that we are in Users Page, then open the ui-modal to insert new user , i noticed that if you tried to navigate to another page by pressing go back or go forward (browser's buttons) it will take you there ( previous page ) but the modal still showing up. try yourself to get the point clearly so my question is how to terminate $uibModalInstance when new page is loaded ?

you absolutely right i didn't notice that before , actually this problem occurs when ui-grid shows more than 10 records per page , i tested it in Firefox, Chrome, Opera,Internet Explorer unfortunately all has the same problem i hope we find a solution to fix it soon

Hello i think it's a simple problem related to style sheet i hope you fix it or someone help you with that issue but consider that if you want to disable languages by default you go to YourProjectEntityFramework > Migrations>Seed>DefaultLanguagesCreator.cs

static DefaultLanguagesCreator()
        {
            InitialLanguages = new List<ApplicationLanguage>
            {
                new ApplicationLanguage(null, "en", "English", "famfamfam-flag-gb"),
                new ApplicationLanguage(null, "ar", "العربية", "famfamfam-flag-sa"),
                new ApplicationLanguage(null, "de", "German", "famfamfam-flag-de"),
                new ApplicationLanguage(null, "it", "Italiano", "famfamfam-flag-it"),
                new ApplicationLanguage(null, "pt-BR", "Portuguese", "famfamfam-flag-br"),
                new ApplicationLanguage(null, "tr", "Türkçe", "famfamfam-flag-tr"),
                new ApplicationLanguage(null, "zh-CN", "简体中文", "famfamfam-flag-cn")
            };
        }

and you will find all languages included by default , so you can just comment any lines doesn't need to i hope that help you in someway best wishes

Showing 81 to 90 of 110 entries