views:

17

answers:

2

Hi,

In a list i have a status columns. In edit form, on change of status to not approved i want to show the comment text box. I want to do using designer or javascript. Pl Help.

+1  A: 

Kindly use A custom aspx page with HTML controls and use the javascript API from following link to update to the sharepoint Office Live JavaScript API

Ashutosh Singh
SharePoint Farm Controls are run at server in nature so you can not attach a javascript function the other way round is to find the control for status column and dyanamically attach a even to it on page load example for the same is provided belowelement.addEventListener('click',doSomething,false);another_element.addEventListener('click',doSomething,false);function doSomething() { this.style.backgroundColor = '#cc0000'; }
Ashutosh Singh
A: 

Thanks for the link but i dont want to do by coding. I want to do using designer & simply hide or show the comment row or text box.

Shailesh

related questions