Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
190
Infragistics webtexteditor cssClass change on some radio button selection
posted

Hi, 

How we can change the cssClass for an element WebTextEditor while change some radio button selction 

here is the code 

<igtxt:WebTextEditor runAt="server" cssClass="AminReadOnly" ID="txtBuyerAccount" ReadOnly="true" Width="150px">
</igtxt:WebTextEditor>

On some radio button click blow function is being called... 

function OnRadioButton_Click(ID)
{
    var bAccount=document.getElementById('<%=txtBuyerAccount.ClientID%>');
   
    bAccount.get_element().className="AdminTextBox";

}

but its not working and chaning the webtexteditor class name changing at run time.