Questions tagged [splitter]

Splitters are special windows/controls that are used to split another window/frame to subwindows. Usually splitters can be dragged so the subwindows are resized.

245 questions
2
votes
3 answers

Splitting query string using multiple delimiters - java

I would like to split these strings: /d/{?a} /a/b/{c}{?d} /a/b/c{?d} into following list of segments: [d, {?a}] (this case is easy, just split using /) [a, b, {c}, {?d}] [a, b, c, {?d}] For the other cases, splitting using / will not get the…
Budzu
  • 173
  • 2
  • 12
2
votes
1 answer

Camel Splitter Parallel Processing Array List - Concurrency Access Issue

Using Camel to split an ArrayList and process each item in parallel up to 10 threads. Following is the config. Thread pool profile is set to max thread count =10.
Aragorn
  • 5,021
  • 5
  • 26
  • 37
2
votes
1 answer

How to hide jstree splitter?

I have a conditional display of panels in my application. The panels are separated by horizontal and vertical splitters. I would like to hide the horizontal splitter bar if I am hiding the panel below it.
2
votes
1 answer

Apache Camel File Splitter by Example

I'm being given a file containing numeric IDs that are delimited by newlines ("\n"): 123948 939904 129384 234049 etc. I want to use Camel to transform the file into an instance of the following POJO: public class IDFile { private String…
IAmYourFaja
  • 55,468
  • 181
  • 466
  • 756
2
votes
2 answers

C# Windows Forms: Splitter flickering

I have the following problem: I placed a splitter-control (not split-container) in my form and added 2 panels. The splitter works properly but when I move the splitter, it starts to flicker - the panels dont. I get the same result with a…
Felix
  • 71
  • 8
2
votes
1 answer

NSSplitView splitter pane change notification

Hello I need to implement four views splitters like in Maya, 3ds max, Blender or other similar modeling tools. I use NSSplitView on Mac side of my editor and I need to know when user drags one pane to sync another pane. Is there any way to get new…
Filip Kunc
  • 631
  • 1
  • 8
  • 19
2
votes
0 answers

Preserving minimum sizes with multiple WPF grids and splitters

I have a problem getting an arrangement of grids, splitters and an expander to work correctly, especially regarding setting min heights. I’ve followed a number of suggestions posted here (especially regarding how to combine a splitter and an…
Andy Evans
  • 171
  • 5
2
votes
2 answers

How to split a csv file 20 lines at a time using Splitter EIP, in apache camel?

I have a csv file having 2000 lines. I wish to split it 20 lines at a time and send each to a processor in apache camel. How do I do it using Splitter EIP ? Please help ..
Kumar Ritesh
  • 183
  • 1
  • 2
  • 11
2
votes
2 answers

How to resize controls seperated by a splitter beyond their container panel size?

I've got a few UserControls on a panel separated by splitters. The containing panel is set to AutoScroll. Since the Splitter control takes its parent's size into consideration when it resizes the controls it 'splits', the resizing of the…
dtroy
  • 1,187
  • 3
  • 14
  • 21
2
votes
2 answers

Camel split xml keeping some nodes

I have:
.....some more nodes.....
.....some more nodes..... .....some more nodes..... .....more Element nodes......
I want to…
user1424119
  • 121
  • 11
2
votes
5 answers

Two divs 50% each. Make middle draggable to make bigger or smaller

Alright everyone, is there a way to have 2 divs taking up 50% of the screen and have a bar in the middle so you can drag it and make the left 40% and the right 60% and vice versa. I hope to be able to do this jquery.
David
  • 728
  • 2
  • 14
  • 28
1
vote
1 answer

Split Containers without too many HWNDs

I need to arrange a few of my controls using split containers such that one split container is nested inside another. I find that each instance of the SplitContainer class is itself a Control and comes with two instances of SplitterPanel which is a…
Agnel Kurian
  • 57,975
  • 43
  • 146
  • 217
1
vote
0 answers

How can I prevent React components from re-rendering

I am attempting to create a UI centered around Windows which are able to split vertically and horizontally. I attempted to implement this with a tree structure using recursion. The WindowManager is connected to a rootstore and receives commands from…
1
vote
1 answer

How to swap splitter windows in Intellij / PyCharm

After splitting the current editor window I navigated to the right one and then created a Scratch File. However the new Scratch File was opened in the left splitter instead. I can not find any way to swap the contents of the splitter windows. Does…
WestCoastProjects
  • 58,982
  • 91
  • 316
  • 560
1
vote
1 answer

jQuery Splitter Plugin - nested splitter wont dock

I'm using the splitter plugin from http://methvin.com/splitter/ and I have 3 columns - of which, the right column needs to be dock-able. Here is the Fiddle: http://jsfiddle.net/8tBvp/11/. The columns resize fine, but the right column wont dock! I…
jreed121
  • 2,067
  • 4
  • 34
  • 57