Avatar

Level 8

Hello

I am trying to grey ONLY the box part (not label/caption) of the field/object, so am using below,

xfa.resolveNode("VISITOR.Page1.myInfo.Name.ui.#textEdit.border.fill.color").value = "192,192,192";

working fine,

but, i came to know that the xfa.resolveNode is not efficient, so, i want to use *this* key word so i tired as below

this.ui.#textEdit.border.fill.color.value = "192,192,192";

but, not working!! pls help me how to get my requirement with *this* key word for a better PERFORMENCE.

i tried the below syntax, but not working!

(this.ui.textEdit.border.fill.color.value = "224,224,224") from

http://forums.sdn.sap.com/thread.jspa?threadID=1596235

Thank you