Hi Techies,
When we run application on Web (IE) during running if we disable column & making its backgroundcolor color as Gray then color is not taking effect, it becomes black color. When we again enable it and change background color within application based on some conditions then field's background color is not taking effect. still its remain as black.
Do we need to handle it differently?
Thanks & Regards,
Devang Modi.
Same code is working fine when we run same application in Native PB. But its display black background color when we run same application in Appeon Web. While checking further I had found that we are not followed standard coding procedure due to that Native PB is able to identify it and worked fine but Appeon Web is not working.
Below are code snippet:
Old Code
ls_mod = "dependent_on.BackGround.Mode=0 dependent_on.BackGround.Color=" + String(RGB(192,192,192)) + "dependent_on.Protect=1" + "dependent_on.editmask.Required=no"
Issue in above code:
Space is not provided after each property change. Corrected code as below:
ls_mod = "dependent_on.BackGround.Mode=0 dependent_on.BackGround.Color=" + String(RGB(192,192,192)) + " dependent_on.Protect=1" + " dependent_on.editmask.Required=no"
Probably we can mention same thing in Appeon Documentation so while migration Developer can take care of it.
Thanks a lot for your quick reply.
Thanks & Regards,
Devang Modi.