Hi
I want to display the blank instead of "1900-01-01" in the table if the suitable date is not there can anyone help me in this?
Thank you
Hi Primal Lobo,
Basically this indicates that no date was provided and it the null date value in outsystems. While displaying you can use if condition to check for null value and display blank. Please see the sample below
SyntaxEditor Code Snippet
if(Tags.List.Current.UpdatedOn = NullDate(),"",Tags.List.Current.UpdatedOn)
Hope this will help.
Thanks
pranav pandey wrote:
yes worked ,
how to do data conversion it's not working from my side.
Thank you so much!
Here a simple approach that does not require aditional "if" statement: set the "Null Value" property of the text input field to #1900-01-01# (using the sharp characters #, instead of quotation marks).