Here is the usual add/edit/view page:FieldCaptionA : [input text/select/etc]
FieldCaptionB : [input text/select/etc]I need to do this:FieldCaptionA : [input text/select/etc]
{This is a custom label before field B}
FieldCaptionB : [input text/select/etc]Is it possible to do that within Server Side function?
I know I can do that with JS or Custom Template, but it would be nice if a Server Side function can handle that.Thanks.
Hi sangnandar,You can do this easily by setting the CustomMsg value inside RowRendered(), i.e.function Row_Rendered() {
$this->[your_field]->CustomMsg = “This custom message appears just below the input field.”;
}
Hi
I need to do this in form Add & Edit data:
caption & input field in different row in form Add & Edit
what I have to do ?
FieldCaptionA :
[input text/select/etc]
FieldCaptionB :
[input text/select/etc]
thank you