All Answers

0 votes

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

0 votes

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

0 votes

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

0 votes

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

0 votes

Hello,

 

has fix been released? I can see latest development release still from oct.27
Thanx,

DiNo

1 vote
In reply to: Solved: App tour

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

0 votes
In reply to: Question on Cookies

Thank you Frank! I appreciate that.  Is there no way to work around this until the fix is ready?

 

 

0 votes

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?

  • Andrew Niese answered Nov 1, 2017 - 4:47 pm
  • last active Nov 1, 2017 - 7:19 pm
0 votes

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 …

  • Tobias answered Nov 1, 2017 - 4:07 pm
0 votes

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.

  • Luca answered Nov 1, 2017 - 4:06 pm
0 votes

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.

  • Luca answered Nov 1, 2017 - 4:03 pm
0 votes
In reply to: Question on Cookies

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

0 votes

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.

  • Luca answered Oct 31, 2017 - 4:24 pm
0 votes
In reply to: Data Repeater

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.

  • Luca answered Oct 31, 2017 - 3:36 pm
0 votes

I can reproduce with lang=hr-HR. Tried others and all work. Will log the bug. Thanks.

  • Luca answered Oct 31, 2017 - 2:56 pm
0 votes

Thanks! Logged the error. The workaround is to set the Dock to Fill after InitializeComponent()

InitializeComponent();
this.desktop1.Dock = DockStyle.Fill;

 

  • Luca answered Oct 30, 2017 - 4:01 pm
0 votes
In reply to: Solved: AspNetWrapper

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

0 votes
In reply to: Chart Problem

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

1 vote

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.

0 votes

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.

Showing 8201 - 8220 of 11k results