Posts by Paul

0 votes

Hi

Thanks for report about this issue.
Apparently there are problem with subcontrols inside a ListView.
I’ll report to the development team and notify you about the results.

Regards and happy codding

  • Paul answered May 22, 2020 - 3:30 pm
0 votes

Hi Florian

Efectibly there are a bug in the configuration that comments
This happend in all mayor browsers supported
For now, the only that not show the error is IE11

I will report to the development team for this problem and inform you when the correction are done.

Regards and happy codding

  • Paul answered May 20, 2020 - 5:14 pm
0 votes
In reply to: TextBox Validator

Hi

Here I adjunt the example with the validations made in wisej

Wisej use another control, maskedTextbox, with the equivalent functionality used in winform for a texbox.

In more complex scenarios, like email and numbers with letters, the better aproeach is use regular expressiones.

You can use textBox or maskedTextbox with regular expressions

I hope to be helpfud.

  • Paul answered Apr 28, 2020 - 4:22 pm
0 votes
In reply to: TextBox Validator

Maybe he refer to this… (see imagen)

 

  • Paul answered Apr 27, 2020 - 10:29 pm
0 votes
In reply to: TextBox Validator

Here left you a small sample with the same textbox validation, in webgui and wisej.

 

  • Paul answered Apr 27, 2020 - 9:27 pm
0 votes

Hi Florian
Thanks for reports this issue
In the project sample, is missing the file fonts.mixin.theme
¿Could be possible that you attach them?

Regards and happy coding

labelautosizesample

  • Paul answered Apr 22, 2020 - 2:38 pm
0 votes

Hi Ulises

Thanks for report the issue !

I’ll inform to developer team and confirm you when be corrected

Regards and happy coding

  • Paul answered Apr 21, 2020 - 2:59 pm
0 votes
In reply to: Reports

hi Antonio

Sorry for the delay response.

For build reports, you can use any tool that are compatible with .net
We cant recommend any specific tool, but many of our clients use Crystal reports.

Here I copy a thread of a consult related with Crystal
I hope to will be useful

https://wisej.com/support/question/does-anyone-has-got-working-example-of-crystal-report-viewer-or-ms-reporting-services-viewer

Regards and happy codding

  • Paul answered Apr 2, 2020 - 9:50 pm
0 votes

Hi Jorge
For now the theme editor don’t have this functionality

I’ll comment at develop team your suggest, to include in a future this functionality

How workaround, I suggest you copy the custom theme to the default directory that use the application.

Regards

  • Paul answered Apr 1, 2020 - 4:20 pm
0 votes
In reply to: Menu shaping

Hi Jorge

You must follow this steps

1.- Create a new theme, using existing one, for example Blue-1

2.- Change to theme Graphite-3 and select the menu item

3.- Copy the section css from the Editor tab
“css”: “{\”before\”:{\”content\”:\”\”,\”display\”:\”block\”,\”position\”:\”absolute\”,\”top\”:\”0px\”,\”left\”:\”0px\”,\”width\”:\”32px\”,\”height\”:\”100%\”,\”background-color\”:\”control\”}}”

4.- Turn to your custom theme and find “menu” : in the editor tab

5. Add the css section copy in step 3 at the end of the block. like that
“menu”: {
“states”: {
“default”: {
“styles”: {
“width”: [1, 1, 1, 1],
“color”: “windowFrame”,
“backgroundColor”: “menu”,
“shadowColor”: “buttonShadow”,
“shadowLength”: [1, 1],
“shadowBlurRadius”: 15,
“css”: “{\”before\”:{\”content\”:\”\”,\”display\”:\”block\”,\”position\”:\”absolute\”,\”top\”:\”0px\”,\”left\”:\”0px\”,\”width\”:\”32px\”,\”height\”:\”100%\”,\”background-color\”:\”control\”}}”

I hope I’ve helped
Regards

 

  • Paul answered Mar 30, 2020 - 11:12 pm
  • last active Mar 30, 2020 - 11:17 pm
1 vote

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

 

  • Paul answered Mar 16, 2020 - 1:25 pm
0 votes

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

  • Paul answered Mar 13, 2020 - 9:20 pm
0 votes

Hi Jose

This issue was reported  with #2180

The fix will be abailable in the next  build

Regards

 

  • Paul answered Mar 12, 2020 - 9:18 pm
0 votes

Hi Robert

With your last comment I could reproduce the issue 🙂
Effectibly when edit manually the values in the NumericUpDown and DateTimePicker, and without leave the control, click directly on button, the code under the buttons that reference this controls, dont takes the input value.

I’ll raise this issue to the development team and comment to you when the fix be available.

Regards and happy coding.

  • Paul answered Mar 5, 2020 - 2:20 pm
0 votes

 

Hi Roberto

I tested your sample proyect to into a free cloud hosting that has support .net apps.
The functionality its ok

This is the link
http://wisejnumericupdown.gearhostpreview.com

The cloud service comany is http://www.gearhost.com

You can crete a free account and create cloudsite app and use a visual studio publishing file for test your sample proyect outside the development environment.

Its very simple publish your app.

More details for publish your proyect into this cloud service, unfortunately its is outside the scope of wisej support.

wisejwebapplication1

Regards.

  • Paul answered Mar 4, 2020 - 8:56 pm
0 votes

Hi Cristian

I attached and example where the animation control works fine.
There are an animation in the user control when you mouse over it and into the gui controls that it containts.

The events of animation into the controls user control works well.
The events of animation for the control also work well, only commented for not be overlayed.

If these sample not work into your enviroment, please tell us the versions of visual studio, wisej and browser are using and send a sample of the case.

wisejanimatedcontrol

Regards

 

  • Paul answered Mar 4, 2020 - 1:05 pm
  • last active Mar 4, 2020 - 2:32 pm
0 votes

Hi Jose

I tested the sample that you send and works well.
I test the conditions that you comment, click into NavigationBar and Toolbar.
I use the lastest version of chrome and FF to test it.

¿are you using the last version of wisej?

The test result

numericupddown-1 numericupddown-2 numericupddown-3 numericupddown-4 numericupddown-5 numericupddown-6

Regards

  • Paul answered Mar 4, 2020 - 1:42 pm
0 votes

Hi Cristian

Could you indicate us the wisej control that you are animating and the name and event of the animation ?

Regards

  • Paul answered Mar 4, 2020 - 3:50 am
0 votes

Hi Jorge
From your question I understood that you have a value that is not boolean, but you want to checkbox will show it checked and unchecked.
Independent from the database, it’s the datatable or object structure that you populate from database the important stuff.
In the sample proyect, I populate a datatable with diferente logical values in diferent datatpyes and used it how datasource for a datagrid with checkbox.
The checkbox take the int and string values how logical and show how checked and unchecked

Datagrid above with custom columns and ckeckbox columns linked with
Datagrid below without columns,
01-datagrid

Code for populate DataTabe
02-code

I hope helped you
Regards
Paul

  • Paul answered Mar 3, 2020 - 4:05 pm
  • last active Mar 3, 2020 - 4:24 pm
1 vote

Hi Boris

I made a test with the link you provide us
It could be that you have updated your application since you post your query.
I didn’t find any problem with selecting the textbox on screen
The mobile for the test is a MotoG5, something old ;-), with three browsers, Opera, Chrome and the phone standard
In the picture more details

Regards, Paul

2019-10-responsive-no-detecta-pantalla

  • Paul answered Oct 10, 2019 - 1:02 pm
  • last active Oct 10, 2019 - 1:08 pm
Showing 241 - 260 of 262 results