programmatically changing textbox text color in an adaptive form
how do i change the color of a textbox text to red in an adaptive form? the cssClassName is readonly property. is there a programmatically way to do it?

how do i change the color of a textbox text to red in an adaptive form? the cssClassName is readonly property. is there a programmatically way to do it?

kautuk_shani
thank you for your follow up. I did discover a way of changing the text by using either javascript or jquery. the key is to grab the id of the control and work with it.
so for example if the image i provided on the question i wanted to change the color of the specific row. (this are created instances with the instancemanger).

I was able to do it the same manner i changed the whole row highlighting to soft orange (code below). the background of the row (panel) was changed to a soft orange adding a class to the panel control.
//highlights a grid row Soft Orange
function HighLightRowSoftOrange(ctrl){
var el = $('#'+ ctrl.id)[0];
$('#'+ ctrl.id).addClass("highLightRowSoftOrange");
}
thank you all for your input
PowerUserOne
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.