Skip to content

Instantly share code, notes, and snippets.

@gridphp
Created November 14, 2022 12:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gridphp/8b164d1e39275eaa7949ef00458cec31 to your computer and use it in GitHub Desktop.
Save gridphp/8b164d1e39275eaa7949ef00458cec31 to your computer and use it in GitHub Desktop.
View dialog header and footer text
$opt["view_options"]["beforeShowForm"] = "function(){
var header = 'Top text';
var footer = 'Bottom text';
$('.EditTable:first').parent().prepend('<div>'+header+'</div>');
$('.EditTable:last').parent().append('<div>'+footer+'</div>');
}";
$g->set_options($opt);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment