Manao Form use LeBlender plugin, which is used to create a new Grid Editor easily. And every Grid Editor has a Partial View, which is located in the folder :
Views > Partials > Grid > Editors
At these Partials views manao form use the "Field" class to map Grid Editor's properties. So on, we can call a property simply with:
Field field = AutoMapper.Mapper.Map<Field>(Model.Items.FirstOrDefault());
@field.Name
And this class comes from:
@using FormPackage6_74.Core.DomainModel.Form;
Now I'm trying to add some new properties. So to map them on my partial view I need this class.
Field Class
If I have to add new fields, where can I find the "Field" class ?
-Thanks
Hi Zihadul
Where did you find this code?
Are you sure you need a Field class?
Thanks,
Alex
Hello Alex,
Manao Form use LeBlender plugin, which is used to create a new Grid Editor easily. And every Grid Editor has a Partial View, which is located in the folder :
At these Partials views manao form use the "Field" class to map Grid Editor's properties. So on, we can call a property simply with:
And this class comes from:
Now I'm trying to add some new properties. So to map them on my partial view I need this class.
Thanks, Zihadul
is working on a reply...