Hi Again,
When I ask an example, is how this will work, for example visualstudio will produce an .apk for android and a .xxx for iOS?
Will the app be just an “webviewer” and the rest is a normal responsive website made with WiseJ?
If possible to start, i’d ask a small example, if it’s not asking too much!
Thanks in advanced again,
Eyal,
can you please share a test case as I cannot yet reproduce.
Either post it here or send it to frankATiceteagroup.com please.
Thanks in advance !
Best regards
Frank
Yes it’s version 2.1.13
Thanks Nikos,
this issue is logged as #2084.
We´ll inform you when a fix is available.
Best regards
Frank
Eyal,
there have been similar problems in an older Wisej build.
Just to make sure: Are you using the latest build (2.1.13)?
Best regards
Frank
Yep, there is… Check out our Wisej.Web.Ext.Bubbles extension.
Best wishes, Thomas
See how text looses focus when datasource is changed
See the attached movie how pictures in record 2,3 are showen when scrolling and the disappering
Hi Cristian,
I am getting the same issue when I use:
tabPage.BackColor = Color.Transparent;
I have logged it as issue #2081
Until it is fixed try:
tabPage.BackColor = Color.FromArgb(0,255,255,255);
In theory they are the same, but the second one worked for me.
Let me know if you have further questions,
Nick
Hi Cristian,
Could you attach an example project that shows the result you are getting as a zip file?
Thanks,
Nick
Hi,
I have the 2.1.13.0, the problem with AutoSizeRowsMode not fixed yet, you know when this problem will be fixed ?
Nikos
The error is in the extension, it was working before because Wisej was not checking the directory of the mixin theme. Now that Wisej 2.1 support optional child mixins it also checks the location correctly. Until we upload the updated extensions to github, you can get the project here:
https://github.com/iceteagroup/wisej-extensions/tree/2.0/Wisej.Web.Ext.Bubbles
Move the mixin theme BubbleNotifications.mixin.theme from \Platform to \Themes (make sure it’s still an Embedded Resource). Once you recompile it will work correctly.
Levie, could I insert this code directly into the Application.mixin.theme file?
Thanks!
You can use Anchoring, Docking, FlowLayoutPanel, FlexLayoutPanel, TableLayoutPanel. Can be used also in combination with AutoSize and AutoScroll, MinSize, MaxSize. The FlowLayoutPanel and FlexLayoutPanel add a number of layout properties to their children. i.e. You can use FillWeight to make controls fill the remaining space.
See attached.
That’s a system error from your app trying to write to a path that doesn’t exist on the server.
Hi Jason,
the Accordion has a set height and one panel always open to fill the remaining space. To have panels that can collapse freely you can simply dock panels to top (or other sides), set ShowHeader to true, all panels (Panel, FlexLayoutPanel, FlowLayoutPanel, TableLayoutPanel, SplitContainer/SplitContainerPanel) are collapsible. They also allow to be collapsed to a different side (CollapseSide, i.e. you can have a panel open and collapse it to the left vertically). You can also set the AutoShow property to OnClick or OnPointerOver to have the panel expand temporarily.
HTH
Hi, Dade!
Try:
Private Sub Upload1_Uploaded(sender As Object, e As UploadedEventArgs) Handles Upload1.Uploaded
Dim I As Integer
For I = 0 To e.Files.Count – 1
e.Files(I).SaveAs(“FILE”)
Next
End Sub
Best regards,
Ulisses.
Thank you very much, is the feature supported in ver 2.1.12?
Hi Cristian,
thanks for your message, but this is by design.
Html text can only be measured by the browser.
You might want to use the following methods:
https://wisej.com/docs/2.1/html/T_Wisej_Base_TextUtils.htm
https://wisej.com/docs/2.1/html/M_Wisej_Base_TextUtils_MeasureText_1.htm
or
https://wisej.com/docs/2.1/html/M_Wisej_Base_TextUtils_MeasureTextAsync.htm
Best regards
Frank
Sorry for the late reply. You are correct, it was missing. Added now.
