Skip to content

Instantly share code, notes, and snippets.

@dudelis
Last active March 20, 2019 12:36
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 dudelis/21340762b9b3c76b26bf4f9453289d95 to your computer and use it in GitHub Desktop.
Save dudelis/21340762b9b3c76b26bf4f9453289d95 to your computer and use it in GitHub Desktop.
K2: Move view above tabs
//To move the view above tabs
$('[name="NameOfTheViewYouGiveToTheViewOnTheForm"]').closest('.view').insertBefore(".tabs-top");
//To move the view below the tabs section
$('[name="NameOfTheViewYouGiveToTheViewOnTheForm"]').closest('.view').insertAfter(".tabs-top");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment