Build a table with dates in an App form

Hi,
Im building an App with the new framework and I got an issue… I don’t know if it is actually a bug or you guys can help me to solve it easily(hope so :smile:).
Let me show you the Issue I’m facing:

DESCRIPTION
I want to build an app to handle specifit dates and time slots for a client’s time managing purposes. It has many sections like the following:


Here, in order to build a table and insert the values, I use an expression like official docs

Where I insert in each row the resulting date selected, it prevents me to create many single variables to link to my process arguments.

ISSUE
I just have an issue with the empty values so, if I set ALL DatePicker components with a default date, I don’t have any issue but, I don’t want it to have presets, I just want to have them empty.
The issue itself is that, when there’s a non-picked date in any of all datePickers, I get a whole empty table in my assistant. It’s a pitty the very short description we get in DatePicker

I’m trying to be short and easy to read, please, ask me to clarify any point if you need so.
I’ll be playing around and I’ll bring the solution if I find it

BTW… Merry christmas and happy new year folks!
Hug!

@jmedinacarbonell

Looks like when empty the value is expecting datetime but because it is empty it is failing…what you can do is check for empty value and then assign a default date like 1/1/1900 insteqd of the actual value

If(FormA.Cliencloset1.Value.ToString.Equals(""),"1/1/1900", FormA.Cliencloset1.Value.ToString)

Cheers

Hi, It works!!!
Thank you so much for the christmas present :smiley:

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.