All Answers

0 votes

You can have multiple appearances for the same control, and multiple mixins, but the final theme is always only one with the base theme and all the mixins baked together.

  • Luca answered Apr 24, 2019 - 3:30 pm
0 votes

Hi Levie,

After upgrade to 2.0.22 the Tab removal Problem is Solved.

Regards.

0 votes

Hi Andrea,

The design of WebPage has been fixed

Thank you!

 

0 votes
In reply to: Change licensekey

Hi Edwin,

 

If you still haven’t gotten it, you could try this:

https://wisej.com/support/question/how-to-change-license-of-autoupdater

 

When opening a VS Wisej project it should open a popup that lets you type in the new license key.  Could you take a screenshot of the popup box if it’s not there?

Thanks.  Please let me know if these things work for you.

 

Best regards,

Levie

0 votes

I pulled the column filter from GitHub and recompiled, Works fine now.

0 votes

Hi Eric,

 

After updating to 2.0.22, the latest development build, do you still get this error?

 

Please let me know!

Best,

Levie

0 votes

I had the same error. Until now we didn’t have to reference Wisej.Framework.Design in our projects. After adding this dll to the references, I got a different error in the designer when opening a form: Cannot load Wisej.Framework.Design or one of its dependencies. Reopening Visual Studio solved this error.

  • Andrea (fecher) answered Apr 23, 2019 - 9:28 am
  • last active Apr 23, 2019 - 9:54 am
0 votes

Create a new project
“Value can not be null: parameter name instance” is
You will see the design.

Screen when creating a new project as a supplement
I will attach it.

 

  • Takao Watanabe answered Apr 22, 2019 - 3:46 pm
  • last active Apr 23, 2019 - 1:42 am
1 vote

Hi Takao,

 

Did you try removing and readding the Wisej.Framework and Wisej.Framework.Design dlls and rebuilding your solution?  After that try completely closing out of Visual Studio and reopening it.  If it still doesn’t work after trying these things please let me know!

 

Best,

Levie

0 votes

Hi Glenn,

 

A fix will be available in the next development release!

Thanks for mentioning!

Best,

Levie

0 votes
In reply to: Eval and EvalAsync

Hi Glenn,

 

Thanks for bringing this to our attention!  The fix for this issue should be available in the next development build within the next couple days!

Let us know if you still have issues after the update!

Best,

Levie

0 votes

Hi,

 

I want to use this this.numericUpDown1.Eval(“this.getChildControl(‘upbutton’).hide()”); to hide the up/down button for the numeric spinner control, but how to apply it to a column in DataGridview.

 

Thank you.

0 votes

Thank you it is working now.

0 votes

Hi Glenn,

 

You can achieve this behavior in several different ways.

First way:

Add this line of code to hide the up button:

this.numericUpDown1.Eval(“this.getChildControl(‘upbutton’).hide()”);

Note: You will need to perform this everytime the control refreshes.

 

Second way:

Add the attached JS file to your solution.

Add “spinner-nobuttons” to the AppearanceKey property of your NumericUpDown control.

You can play around with the properties inside of the JavaScript file to get the requested behavior!

 

I hope these help!

Let me know if you have any more questions!

 

Best,

Levie

 

  • Levie (ITG) answered Apr 17, 2019 - 4:55 am
  • last active Apr 17, 2019 - 4:56 am
0 votes

Hi,

 

This is a known issue and a fix is available in the next update!

https://wisej.com/support/question/popup-comes-when-press-letter-v

Let us know if you have issues after the next update!

 

Best,

Levie

0 votes

It was introduced with the latest Firefox. See issue #1842 here https://wisej.com/issues/

It is already fixed and will be available in the upcoming build this week.

  • Luca answered Apr 16, 2019 - 12:13 pm
0 votes

In the first sample the stream was closed by the using block.

You can pass the stream to Application.Download() and then dispose it. Wisej doesn’t dispose the stream, it doesn’t know if the app uses it again. Internally it saves the content into a temp file immediately and when the request to download it comes in, it will simply return the file and delete it from the temp directory.

 

 

  • Luca answered Apr 16, 2019 - 12:11 pm
0 votes

Hi,

I have installed on the webserver machine the node.js and tested the install samples successfully. What I don’t know is, what do I have to configure in my VS project, to get the things running.

What I have done till now:

I created a file nodeutils.js and created inside following function:

function write_node(data, filepath, filename) {
console.log(data);
var http = require(‘http’);
var fs = require(‘fs’);
var file = filepath; // including filename
console.log(‘file: ‘, file);
http.createServer(function (req, res) {
fs.writeFile(file, data, function (err) {
res.writeHead(200, { ‘Content-Type’: ‘text / html’ });
res.write(data);
res.end();
if (err) throw err;
console.log(‘File was created successfully’);
}).listen(8080);

})
};

 

In the project web.config file I added following line in the

<handlers>

<add name=”iisnode” path=”nodeutils.js” verb=”*” modules=”iisnode” />

</handlers>

 

And finally, from the html file I make a call to the function write_node(data, filepath, filename)

What is wrong with this stuff?

0 votes

I changed the code to this last night, which I think would ensure the memory stream gets closed and cleaned up:

// Return the document to client as a stream
using (MemoryStream lo_stream = new MemoryStream())
{
outputDocument.Save(lo_stream);
lo_stream.Position = 0;
Application.Download(lo_stream, ls_WbName);
}

Still not sure if the Application.Download closes the stream on its own.

0 votes

Hi Mario,

This link might be helpful showing how to override delimiters: https://stackoverflow.com/questions/7201532/how-can-i-override-the-currency-formatting-for-the-current-culture-for-an-asp-ne

 

You can change the “culture” setting in the Default.json file.  This allows you to customize the language for localization.

 

You can also find more information about localization here: https://wisej.com/docs/2.0/html/Localization.htm

— The CultureChanged event might be useful to set the delimiter if the language is not English.

 

Here is a link that shows you how to parse values for all kinds of delimiters.  This would be useful so clients can keep their native format.

https://stackoverflow.com/questions/14400643/accept-comma-and-dot-as-decimal-separator

 

I hope this helps!

Please let me know if you have any more questions.

Best,

Levie

Showing 6061 - 6080 of 11k results