Events For Fields

Post Reply
xxltomcat
User
Posts: 107

Events For Fields

Post by xxltomcat »

I suggest a new feature for the Event Sections:

It would be a nice function the throw an event before a field is created, so you can create custom control elements for list, edit, add....

Somethink like this:

funktion Field_Rendering($fieldname, $&output){

Here you can manipulate the field output to create custom contols for list, edit....
if(CurrentPageID=="view"){
$output='My New Control';
}
if(CurrentPageID=="edit"){
$output='My New Control';
}
}

Thanks


Post Reply