Inserting and Updating data (any Suggestions)

mike55

Contributor
Joined
Mar 26, 2004
Messages
727
Location
Ireland
Ok, have a call logging system. When a call is receiver, the caller supplies the following, name, customer name, system name, category name, the basic description and additional information. The person who take the call uses this information to fill up the dropdown lists and textboxes on the web page. Each user has a access level (either admin, user or guest). Inserting the data first time is grand, now say we assign a call to harry on the system. This means that harry must deal with it. Now how could i prevent harry or someone else from entering the system some time down the line and changing the call details in terms of who the call is allocated to, while at the same time allowing harry or some one to modify some of the details i.e description, date, time etc.

Mike55
 
Can you make "who the call is allocated to" Readonly?

So first time, when there's no value in that field, it can be changed. Once there's a value in that value (different from the default value for example), make the field readonly.
 
Back
Top