All Answers

0 votes
In reply to: custom startup loader

Using this code I’m getting a weird repeating image in an Android webview.  As you can see the .GIF is repeated at the top of the screen. And in some cases, there is a black-border on the edges that are not the color #3d3d3d.  Android Chrome seems unaffected….

 

.exactCenter {
width:200px;
height:200px;
position: fixed;
background-color: #3d3d3d;
top: 50%;
left: 50%;
margin-top: -100px;
margin-left: -100px;
}

 
<!– div for custom loader –>
<div id=”my-loading-screen” style=”position:absolute; z-index:100; width:100%; height:100%; background-color:#3d3d3d”>
<div class=”exactCenter”>
<img src=”Resources/Images/fixity-loader3.gif” />
</div>
</div>

 

0 votes
In reply to: custom startup loader

Hi Andrew,

you can find a couple of ways to customize the loading process of a Wisej app here
(including changing the loader.gif):

https://wisej.com/support/question/custom-loading-screen

Hope that helps.

Best regards
Frank

0 votes

The WebSocket exception in the event viewer is traced by the System.Web.WebSockets and it should happen when a connection is lost, like Mark wrote. It’s not related to the “reloadData” missing method for the full calendar.

The “reloadData” unknown function problem is a javascript error. That method is called on a DataGridView or ListView to make them as for the current data page again.

What browser are you using?

  • Luca answered Jun 14, 2019 - 7:27 pm
0 votes

I think that is a normal exception that IIS generates when a websocket is terminated unexpectedly. I see those in my logs all the time and it is unrelated to wisej as any websocket connection can generate that error.

0 votes

Closing this issue, let us know if something changes.

0 votes

Hi Dino,

Have you thought about trying to use the FileSystemWatcher to write/read changes to a shared directory?  For your scenario, you could have one app write a file to the shared directory containing info relevant to the URL parameters and have the other app watch for the changes in it (and read them).

Just another alternative solution!

Let us know what you decide to use!

Best regards,

Levie

0 votes
In reply to: İnput Type Problem

Thank you very much luca

AddClientEventListener code it is work , I want  also backspace and delete press permission it is possible ?
  • HSoft answered Jun 13, 2019 - 6:01 pm
0 votes
In reply to: İnput Type Problem

You can:

  1. Use MaskedTextBox
  2. Use NumericUpDown
  3. Attach a javascript event handler to handle “keypress”, see attached screenshot.
  4. Attach a javascript event handle in code:
 this.textBox1.AddClientEventListener("keypress", @"
 var e = arguments[0];
 if ('0123456789'.indexOf(e.getKeyIdentifier()) === -1)
 e.stop();
 ");

HTH

 

  • Luca answered Jun 13, 2019 - 1:24 pm
0 votes

Hi Jorge,

I fear I don´t fully understand what improvements you´re missing ?
Can you please list them ?
In any case you can handle the Validating event and perform any additional check you like.

Best regards
Frank

0 votes
In reply to: İnput Type Problem

It’s how it works in the browser.

The InputType property of the TextBox allows you to use the native implementation of the different types. It is not a Wisej widget – it’s exactly as the browser implements it.

https://www.w3schools.com/html/html_form_input_types.asp

It’s different on each browser and on each OS.

  • Luca answered Jun 12, 2019 - 2:23 pm
0 votes

Hi Andrew,

here is the theme from 2017.

Best,

Jens

0 votes

Oh i see, it’s ok for me, i’ll just close&open it until it’s fixed,

np at all,

0 votes

just close and reopen vs, is a stupid bug that i encounter from the previous version, didn’t solved yet weeee

 

If the error is in the designer just open the designer file, or change the variable named after the error, this is just a css bug

  • Jacob Richardson answered Jun 11, 2019 - 7:28 am
  • last active Jun 11, 2019 - 7:28 am
0 votes

nvm solved.

I rebinded the datasource like Huv adviced

0 votes

Thanks Levie,

I just recoded like this, works perfectly.

Dim Str As String = String.Empty
For i As Int32 = 0 To grid.RowCount – 1
Str &= grid.Rows(i)(“userid”).Value & “;” & vbCrLf
Next
Dim stream As New IO.MemoryStream(System.Text.Encoding.UTF8.GetBytes(Str))
Application.Download(stream, “email-export.csv”)

0 votes
In reply to: Set Value Js Chart

Hi,

I suggest to use a Wisej widget following our integration samples:

https://wisej.com/tag/integration/

We also offer custom integration support and training.
You can contact us at salesATwisej.com to get individual quotes.

Best regards
Frank

0 votes

It’s not possible with any browser in any OS with any web technology. The only thing you can do in a browser is use <input type=’file’>. Wisej makes it easier and quite flexible with the Upload control.

  • Luca answered Jun 10, 2019 - 6:25 pm
0 votes

Hi Andrew,

Have you noticed this for all kinds of controls or just a certain kind?  We were having issues with the TabControl previously, but it would be good to know if other controls are doing this as well.  It would also be helpful to attach a sample and VS version.

Let me know!

Best regards,

Levie

0 votes

Hi Jorge,

Check out this example of using different download options: https://github.com/iceteagroup/wisej-examples/tree/2.0/Download

Save File Dialog Info: https://stackoverflow.com/questions/28576438/how-to-download-a-file-in-c-sharp-with-a-popup-asking-where-to-save-file

Let me know if this works for you.

Best regards,

Levie

0 votes

Wisej doesn’t create the classes or manage the code. That’s part of the .NET framework. In .NET statics are unique within an app domain.

Web sessions don’t exist in .NET. A session in any web technology (php, jsp, aspnet, etc) is just an instance of an object identified by an id stored in the browser. If you use the same object in multiple threads you should synchronize it, especially if it uses external resources like a file or a database connection.

  • Luca answered Jun 9, 2019 - 2:59 am
Showing 5821 - 5840 of 11k results