is there a way to add a textbox to a resource row ?
i've tried to add a <INPUT type=text/> or <TEXTAREA/> in the innerHtml property of a Row header column, but i 'm not able to get, in the code-behind, the value entered in client-side controls : Does anyone has tried to do something similar or do you have any idea?
Answer posted by Dan Letecky [DayPilot] 13 years ago.
If you insert the <input> element manually you won't be able to get its value easily on the server side - it won't be mapped automatically to a server-side control because it doesn't exist.
You should be able to read the values during PostBacks using Request.Form[name]:
string value = Request.Form["inputname"];
If the purpose of inserting the <input> is to allow editing the resource, I suggest you take a look at the active areas feature introduced in 7.1: