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>
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
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?
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.
Closing this issue, let us know if something changes.
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
Thank you very much luca
AddClientEventListener code it is work , I want also backspace and delete press permission it is possible ?
You can:
this.textBox1.AddClientEventListener("keypress", @"
var e = arguments[0];
if ('0123456789'.indexOf(e.getKeyIdentifier()) === -1)
e.stop();
");
HTH
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
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.
Hi Andrew,
here is the theme from 2017.
Best,
Jens
Oh i see, it’s ok for me, i’ll just close&open it until it’s fixed,
np at all,
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
nvm solved.
I rebinded the datasource like Huv adviced
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”)
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
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.
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
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
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.
