Hi Andrew,
every Wisej app is simply a web page like any other page. So http://myapp.com/login.html can e.g. navigate to http://myapp.com/application.html or http://myapp.com/application. Wisej does not have to use default.html, you´re free to use any other name for it if you want to.
Hope that helps.
Best regards
Frank
Hi Terza,
sorry I was reading too fast and missing that it only fails in IE for you.
In that case it is most likely caused by IE running in Compatibility mode.
Please check your IE settings to see if 14.11.0.17 is listed under Sites running in Compatibilty Mode.
If it is, please remove it from there.
See also: https://wisej.com/support/question/object-doesnt-support-property-or-method-addeventlistener
Best regards
Frank
Hi Terza,
thanks for your interest in Wisej.
Can you please provide us with the project link so we can take a look ?
The link you have posted is the link to the static error page that is shown.
Thanks in advance !
Best regard
Frank
Hi Dino,
we are finalizing the next Wisej release which is going to be published this week.
Please contact me at frankATiceteagroup.com if you need a prerelease build.
Thanks in advance.
Best regards
Frank
Hello,
has fix been released? I can see latest development release still from oct.27
Thanx,
DiNo
Hi Mark, Matthew, Edmond,
we´re happy to announce that the first version of our TourPanel extension is available at https://www.wisej.com/Extensions
It would be great if you can give it a go and share your feedback and experiences with it.
Thanks in advance !
Best regards
Frank
Thank you Frank! I appreciate that. Is there no way to work around this until the fix is ready?
Mostly I just want the native selector UI displayed, because it is ideal for input on mobile devices. If the native display is impossible, something that emulates or imitates it would be nice. What would you recommend?
That’s correct. But in Firefox the watermark text is also displayed when the control has focus…
I set focus to the first textbox so the user does not know what to enter if he does not see watermark text …
It’s possible to create plain ComboBox control. But it cannot be a replacement for the Wisej.Web.ComboBox, there are too many features that the plain html select doesn’t support. The Wisej.Web.ComboBox can be edited, styles, can display any HTML in the combo and drop down, can handle all the dropdown, closeup events, update the list while it’s displayed, have variable height elemenets, etc.
It’s visible when the input doesn’t have the focus. It’s the way IE shows the placeholder. I just tried with IE11 11.674.15063.0 but it was also visible (without the focus) in previous versions. I can see it with emulation IE10 as well.
Hi Matthew,
we´ll be adding the Domain property to Wisej´s Cookie class. It´s logged as enhancement WJ-8561 and we´ll notify you when it is available.
Thanks,
Frank
It was fixed. This is a different issue caused by other fix for the Thai calendar that happens to mess up the yer for the hr-HR locale. The browser returns a strange format when using toLocaleDateTimeString(). It’s logged as WJ-8557. The fix should be out today.
You can use one of the panels: Panel, FlowLayoutPanel, TableLayoutPanel. You can paginate or simply fill the container. You can change the flow direction, fill weight, line breaks. Or you can use plain HTML in an HtmlPanel and string interpolation to format a template.
I can reproduce with lang=hr-HR. Tried others and all work. Will log the bug. Thanks.
Thanks! Logged the error. The workaround is to set the Dock to Fill after InitializeComponent()
InitializeComponent();
this.desktop1.Dock = DockStyle.Fill;
Hi Ulisses,
it can´t be done that way because ASP.NET controls do not exist outside of the postback request.
Saving the reference to the ASP.NET control does not work with ASP.NET as controls can only be used during the page cycle:
https://msdn.microsoft.com/en-us/library/ms178472.aspx
So basically any change to an ASP-NET control can only be applied while processing Init, Load etc.
The code below works.
Imports System.ComponentModel
Imports System.Web.UI.WebControls
Imports Wisej.Web.Ext.AspNetControl
<ToolboxItem(True)>
Public Class clsListbox
Inherits AspNetWrapper(Of UI.WebControls.ListBox)
Public Sub New()
Me.ScrollBars = False
End Sub
Public ReadOnly Property Items As ListItemCollection
Get
Return _items
End Get
End Property
Dim _items As New System.Web.UI.WebControls.ListItemCollection
Private Sub clsListbox_Init(sender As Object, e As EventArgs) Handles Me.Init
For Each Item In Me.Items
Me.WrappedControl.Items.Add(Item)
Next
End Sub
End Class
Hope that helps.
Best regards
Frank
Hi Muhammed,
thanks. I have logged this error as WJ-8554 and a fix will be included in the next Wisej release.
Please note that all properties in the “quick actions” are also accessible through the property grid in the designer.
So please use this as a workaround until the fix is available.
Best regards
Frank
My problem solved on this topic https://wisej.com/support/question/integration-with-android
Interestingly, when adding touchstart event to flowlayout and other components has flowing content then scrolling becomes smooth.
Thank you.
My problem solved on this topic https://wisej.com/support/question/integration-with-android
Interestingly, when adding touchstart event to flowlayout and other components has flowing content then scrolling becomes smooth.
Thank you.
