Base solution for your next web application
Open Closed

Dynamic Property as a mandatory field #12360


User avatar
0
Prasanthtp created

Hi
How do I set a dynamic property as mandatory? For example, I have a text dynamic property named employee code, the user can't leave this dynamic property blank. He has to enter some value. It is a compulsory field. How do I implement this?


5 Answer(s)
  • User Avatar
    0
    oguzhanagir created
    Support Team

    Hi @Prasanthtp

    Dynamic Entity Property Value is defined as required. Here you need to add validation on the UI side for the user required field. For this, you need to perform these validation operations in the ManageDynamicEntityPropertyValueBase file if it is MVC, or in manager.component.ts if it is Angular. If the incoming value is empty, you can show a message.

  • User Avatar
    0
    Prasanthtp created

    Hi .. I use the MVC project.

    My requirement is as below. I added a new field called ismandatory, If this check box is true, I will show a validation error in UI, if it is false, I will allow the user to save it.

    image.png

    How do I add a new column to the DynamicProperty table. I can add it to DynamicPropertyDto, but I can't edit the DynamicProperty table to have a new Boolean column.

  • User Avatar
    0
    ismcagdas created
    Support Team

    Hi,

    Currently we don't have such a feature. Could you create an issue here https://github.com/aspnetzero/aspnet-zero-core so we will add this feature for the next version of AspNet Zero.

  • User Avatar
    0
    Prasanthtp created

    Done. Issue created. https://github.com/aspnetzero/aspnet-zero-core/issues/5565

    In the future if I want to extend any of the basic boilerplate code , is it possible to do it by myself? like downloading the source code from aspnetboilerplate . modify and update the DLL reference

  • User Avatar
    0
    ismcagdas created
    Support Team

    Hi @Prasanthtp

    Yes, it is possible. If you wish, you can get the Boilerplate's source code, apply your logic and then replace the used NuGet packages with your local DLLs or even your local NuGet packages.

    You can also try to overwrite existing functionality in Boilerplate as much as possible. In that way, you can keep up to date when we release a new version.

    I have added your request to next milestone and we will work on this issue.