C
|
Codea 6/3/2008 |
Hi Is it possible disable editing in one only field if this field is not empty ? (after it was added with a value...) Many thanks Stefano
|
J
|
Jane 6/4/2008 |
Stefano, select field1, field1 as field1_edit, ... from TableName
|
S
|
stalbone author 6/4/2008 |
Thanks Tony & Jane. |
J
|
Jane 6/5/2008 |
Stefano, |
S
|
stalbone author 6/5/2008 |
Stefano, it's very hard to understand you. Please re-phrase your question.
|
S
|
stalbone author 6/10/2008 |
Excuse my English... :-( I have a table with: Field1 = DateOfWork Field2 = TypeOfWork Field3 = FeedBackWork The fields of my record are empty or null Step 1: I edit this record and I insert value in Field1,Field2 and Field3 Step 2: I save record Step 3: I again edit my table (my records) Now, I edit next this record and now I would want the only Field2 to be _not editabile_because it is not null.. All this dynamically and not built through the Visual Editor... Because the change of the state of the record is dynamic... I hope to have explained well the concept... Thanks to everybody Stefano
|
J
|
Jane 6/18/2008 |
Hi, <script> if(document.forms.editform.value_FieldName.value!=''') document.forms.editform.value_FieldName.disabled=true; </script> |