Date is not updated in the field after selecting date in Fw-From datepicker

Hi Team,

I am using Fw-Form 's date picker in my application.
{
id: value.key,
name: value.key,
label: value.name,
type: “DATE”,
required: true,
placeholder: Select ${value.name},
choices: ,
}

The issue is after selecting the date it is not updating in the field, after clicking the update button only the values are getting updated in the field.

Let me know do I need to change anything to acheive this.
image

@Gopi This is the expected behaviour of the component.

3 Likes

Thanks for the confirmation @SriValli_S

Hi @SriValli_S

I am using Fw-Form Number field, my code is
{
id: value.key,
name: value.key,
label: value.name,
type: “NUMBER”,
maxLength: “15”,
required: true,
hint: “Specify a number (below 100,000,000,000,000)”,
placeholder: Enter ${value.name},
choices: ,
}

The issue is i am using the (maxLength: “15”) but it is not working accepting more that 15 characters, the same props is working for the Text field.

Kindly suggest a solution for this.

Hi @Gopi can u please use maxlength instead of maxLength and try

Hi @arvindan.ta

I have tried that also it is not working

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