Hi Jan Mika,
this is now fixed in our latest Wisej development build (2.1.48).
Best regards
Frank
Hi Florian,
this fix is now also included in the latest development build (2.1.48).
Best regards
Frank
Hi Edwin,
issue #2189 is fixed in our latest development build (2.1.48).
Best regards
Frank
Hi Jose
Great!
I tested your code and before to generate a file from stream I reset the position zero. and works perfect
Here the test
//auto fill the range with the first cell’s formula or data
workBook.editCopyRight();
//select range A1:F7
workBook.setSelection(0, 0, 6, 5);
//Creating an AutoFilter
workBook.autoFilter();
//Counting the auto filtered value in the cell “E11”
workBook.setFormula(10, 4, “SUBTOTAL(2, B1: B7)”);
workBook.write(stream);
//*** resetting the position of the stream to the beginning
stream.Seek(0, SeekOrigin.Begin);
Application.Download(stream, “test.xls”);
//*** resetting the position of the stream to the beginning
stream.Seek(0, SeekOrigin.Begin);
Application.DownloadAndOpen(“_selft”, stream, “test2.xls”);
Regards
Happy coding
We have to complete RTL for the DataGridView. Detail view in the ListView uses the DGV. But it’s more difficult than originally expected. We support RTL + RTL Layout everywhere but in the DGV it’s not complete. I don’t have a date, but it’s certainly a core feature that must be completed.
HTH
Hi Luca,
thanks so much.
You answer solved our problem!
What you indicated me reading the file works well with wisej,
but it seems that you have some kind of problem assigning the contenttypes,
I made a normal asp page in the project and put the following code:
using (MemoryStream stream = new MemoryStream ())
{
workBook.writeXLSX (stream);
var response = HttpContext.Current.Response;
stream.Position = 0;
response.Clear ();
stream.Seek (0, SeekOrigin.Begin);
stream.WriteTo (response.OutputStream);
response.ContentType = “application / vnd.openxmlformats-officedocument.spreadsheetml.sheet”;
response.AddHeader (“Content-Disposition”, “attachment; filename = text”);
response.StatusCode = 200;
response.Flush ();
response.End ();
}
And it worked correctly, I also use the library with visualwebgui and it works well for me.
Hi Jose
¿Did you test downloading a excel file, with the same structure that show in your code and opened as a stream before download?
I know that is not you need, its for discart some issue in the library that you use
Sample code
using (var stream = new FileStream(Path.Combine(Application.StartupPath, “Excel.xls”), FileMode.Open, FileAccess.Read))
{
Application.Download(stream, “Excel.xls”);
}
Regards
It looks like an old build of the FullScheduler extension. To make sure download the project here https://github.com/iceteagroup/wisej-extensions/tree/2.1/Wisej.Web.Ext.FullCalendar and recompile it. Also please attach here a zip with the FullCalendar.dll you are using so I can make sure.
select timelinemonth is not valid
The issue is that we didn’t implement the TextImageRelation property for the Radio/Check buttons unlike the Button to keep the dom a bit lighter. It can be added as an enhancement and could make it in 2.2. The best approach now is to use a theme mixing (attached), see screenshot also.
In the mixin you can control the distance between the radio and the image, the distance between the image and label, etc.
What version of Wisej? I just tried the FullCalendar and TimelineMonth (Week and Day) and they all work using the provided open source license from FullCalendar. If you contact us directly with a test case and more information we may be able to help.
What Wisej build? Contact us directly at support [at] iceteagroup.com so we can look at all the current issues.
What Wisej build? Contact us directly at support [at] iceteagroup.com so we can look at all the current issues.
Ciao Simone,
If the load balancer changes IP it’s probably failing the client fingerprinting validation in Wisej. Try to add “validateClient”: false. See https://wisej.com/docs/2.1/html/Configuration.htm
Let me know. Also, I believe you can enable WebSocket with the AWS load balancer. Originally it was more complicated since you have to use a custom protocol config but now I think it’s built in.
/Luca
I hope in a remote session, the problem is still present
bye
There was a bad variable in my code. The form was called by a object instead form directly
thanks and sorry
Yes Luca, I have the same warning message in the console. My work around is this:
I create a cookie, then I use javascript to copy the cookies content to clipboard
bye
Cristian Zerbinati
Also as an ER, It would be great to have in a Widget a method similar to Call(), but which returns a value of what returns called js function
Firefox is blocking the command. Push F12 and you will see the warning “document.execCommand(‘cut’/‘copy’) was denied because it was not called from inside a short running user-generated event handler.”
That’s what I was referring to at the beginning. Some browsers (some versions) may allow it some others may not. The only way to make sure it works is to do it from a client event. There is not way around it in any web system.
