cancel
Showing results for 
Search instead for 
Did you mean: 

Disabling the ADOBE forms fields

Former Member
0 Kudos

Hi Experts ,

I am working on the Offline time sheet   :

As per the requirement I need to disable the day in which the resource is absent.

I am able to disable absence days but the value ‘0’ is coming irrespective of what I am passing from Webdynpro.

Is it possible to make a field disable without having any value?

I checked it with passing blank from webdynpro component and I also checked Javascript/formcalc code.

Please Guide me.

Thanks,

Akhilesh Bhagat.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

check the data type of the particular field...

Regards,

Venkat.

Former Member
0 Kudos

Hi Venkat,

Thanks a lot I got the solution.

I changed the FormCalc code like...

if($.rawValue == 0.00)

then

$.rawValue = ""

endif

Thanks & regards,

Akhilesh Bhagat