Hi,
on mobile SplitterWidth do not change the Width.
is there any workaround?
best
Cristian
Hi Christian,
As a workaround, you’ll need to extend the SplitContainer and add the following override:
public class MySplitterContainer : SplitContainer {
protected override void OnWebRender(dynamic config)
config.orientation =
this.Orientation == Orientation.Vertical
? Orientation.Horizontal
: Orientation.Vertical;
base.OnWebRender((object)config);
}
Best Regards,
Alaa
I link demo project and screen shot
https://eprimeos.it/public/demo/splitterwidth.png
https://www.eprimeos.it/public/demo/testsplitter.zip
If I attach in the post, I have an error “Forbitten”
Hi Cristian,
you say it also fails on the desktop?
I have tried here and could not reproduce it at all.
Can you please tell us your Wisej.NET version and send a sample with instructions on how to reproduce?
Best regards
Frank
Hi Frank,
the splitter container works, is the property SplitterWidth that do not work, only in designer. I have just test on Android Firefox and Chrome, I just noticed that the problem is also present in desktop browsers
Wisej version: 3.5.16
Windows
changing the property SplitterWidth work on desinger, but not on browser, desktop too
best
Hi Cristian,
I just checked our Demo Browser on an iPhone and it worked fine:
https://demo.wisej.net/#Containers/SplitContainer/Features
So we need more information:
Best regards
Frank
Please login first to submit.