Skip to content

Instantly share code, notes, and snippets.

@ShanikaNishadhi
Created July 8, 2019 22:56
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 ShanikaNishadhi/6e928ef105c9c7bcd7fe096b9398d542 to your computer and use it in GitHub Desktop.
Save ShanikaNishadhi/6e928ef105c9c7bcd7fe096b9398d542 to your computer and use it in GitHub Desktop.
<template>
<JqxSplitter :width="850" :height="850" :orientation="'horizontal'"
:panels="[{ size: '50%' }, { size: '50%' }]">
<div>
<JqxSplitter class="jqx-splitter-nested"
:width="'100%'" :height="'100%'" :orientation="'vertical'"
:panels="[{ size: 300, collapsible: false }]">
<div>
<JqxSplitter class="jqx-splitter-nested"
:width="'100%'" :height="'100%'" :orientation="'horizontal'"
:panels="[{ size: 150 }]">
<div>
<span>Panel 1</span>
</div>
<div>
<span>Panel 2</span>
</div>
</JqxSplitter>
</div>
<div>
<span>Panel 3</span>
</div>
</JqxSplitter>
</div>
<div>
<JqxSplitter class="jqx-splitter-nested"
:width="'100%'" :height="'100%'" :orientation="'horizontal'"
:panels="[{ size: 150, collapsible: false }]">
<div>
<span>Panel 4</span>
</div>
<div>
<span>Panel 5</span>
</div>
</JqxSplitter>
</div>
</JqxSplitter>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment