Hello , I hope you are well.
I have a problem and I need help , I'm working on a WPF project with Telerik UI , my issue is turning about CRUD System
I Have those things :
- Entity Model Auto generated
- Dynamic RadDataForm with dynamic Data source for each Table in my Entity model.
- SQL Server DataBase
When I load my DataContext , the dataform dynamicly generated with Model types ( Ex : text feild for string types , date Picker for DateTime types ... ) unitil now all is good.
First problem :
So for Float types when I add a new item and leaving the text field empty is working because it's not required in my data annotations but when I put a value and I change my mind after by let the value empty I got the error Validation message " input string format is incorrect " , knowing that my ( int , float ) values in my Model is Nullable ( I tried Nullable<flaot> and float? ) both cases the same error.
Note : I tried with the ( sdk-projects Telerik and Demos - Telerik UI for WPF ) examples and same result.
Second problem :
In the RadDataForm for numeric values do I can't insert decimal numbers normally ? ( Ex: I wanna write 5.2 I found that I have to write 52 and use arrows position between ( 5 and 2 ) and then put the ' point (.) '
Thank you .
I have a problem and I need help , I'm working on a WPF project with Telerik UI , my issue is turning about CRUD System
I Have those things :
- Entity Model Auto generated
- Dynamic RadDataForm with dynamic Data source for each Table in my Entity model.
- SQL Server DataBase
When I load my DataContext , the dataform dynamicly generated with Model types ( Ex : text feild for string types , date Picker for DateTime types ... ) unitil now all is good.
First problem :
So for Float types when I add a new item and leaving the text field empty is working because it's not required in my data annotations but when I put a value and I change my mind after by let the value empty I got the error Validation message " input string format is incorrect " , knowing that my ( int , float ) values in my Model is Nullable ( I tried Nullable<flaot> and float? ) both cases the same error.
Note : I tried with the ( sdk-projects Telerik and Demos - Telerik UI for WPF ) examples and same result.
Second problem :
In the RadDataForm for numeric values do I can't insert decimal numbers normally ? ( Ex: I wanna write 5.2 I found that I have to write 52 and use arrows position between ( 5 and 2 ) and then put the ' point (.) '
Thank you .