All Answers

0 votes
In reply to: Enhanced MonthCalendar

Nice catch, Cris, thanks !

It´s logged as WJ-7738 and fixed in the latest build (1.2.83).

Best regards
Frank

0 votes

Hi Alex,

Menu merging is controlled by 2 properties: MergeOrder and MergeType.

Find a basic sample here and see how/where menus are added.

Best regards
Frank

0 votes
In reply to: Beta Updates

We have just uploaded a new build (1.2.83) with the following fixes/enhancements.

Item Type Priority Severity Title Resolution
WJ-7738 Bug Low Trivial Month/Year selector is losing 2 years when using the arrow keys Complete
WJ-7736 Enhancement Low Trivial Improve autocomplete with “Suggest” for editable Comboboxes Complete
WJ-7737 Bug Low Trivial Changing the width of a ColumnHeader in a ListView
prevents it from being cleaned up when the ListView is deleted.
Complete

We have also adapted a small sample from the Mono test suite. It uses VirtualMode for a ListView with 5.000.000 items.

You can download it here

0 votes

Sure can. Attached.

The one on the left is the VWG version of the chat where the text comes up from the bottom.  The WiseJ version on the right is if I don’t add any manipulation to the divs in the HTML box besides some padding to avoid going under the scroll bar, so the text comes down from the top.  If I use the same absolute positioning I did in VWG, I just get a blank area with no text at all.

  • Chris answered Oct 27, 2016 - 6:46 pm
0 votes

Can you send me a screenshot of what you get and what you’d like to get?

Best

Luca

  • Luca answered Oct 27, 2016 - 6:25 pm
0 votes

Hey Luca,

Sorry to take so long to reply!  ScrolltoY is exactly what I was looking for, thanks!

One thing though, is there a way to get the text aligned to bottom? Everything I try gives me a blank HTML box.

Thanks,
Chris

  • Chris answered Oct 27, 2016 - 5:55 pm
0 votes
In reply to: ListView ColumnHeader

Cris, Mark,

can you please give us an idea of how you are adding the items to the list view ?

What initial View have you been using ?

Any chance to wrap up a small sample ?

TIA
Frank

0 votes
In reply to: ListView ColumnHeader

Hi Cris,

I think we finally found the reason and how to reproduce the ColumnHeader of a list view.

In our tests it only happened when we changed the width of one or more ColumnHeaders.

It will be fixed in the next update. Issue # is WJ-7737.

Thanks
Frank

0 votes

Cris,

thanks, it´s a good sample that helped to reproduce the problem.

We´ll improve “Suggest” for editable comboboxes and keep you updated.

Issue # is WJ-7736

Best regards
Frank

0 votes
In reply to: FlowLayoutPanel

Hi Luca,

How about the TextBox default size of (0, 22). Did you notice that one too?

Thanks.

  • Cris answered Oct 27, 2016 - 2:56 pm
  • last active Oct 27, 2016 - 3:00 pm
0 votes
In reply to: FlowLayoutPanel

Yes, it was the same line of code.

  • Luca answered Oct 27, 2016 - 2:58 pm
0 votes
In reply to: FlowLayoutPanel

Yep… I thought it was a glitch in the matrix since everything worked but it turns out it was a last minute change to support horizontal Anchoring when AutoSize=true. Everything works perfectly and there is no need t change AutoSize anymore. The double click issue is also fixed. Will be in today’s update.

Thanks!

/Luca

  • Luca answered Oct 27, 2016 - 2:51 pm
0 votes
In reply to: sqlServer Mode

The /healthcheck is more or less used by most load balancers to test if a server is available.

The health check is only one of the features that IIS ARR can use to determine the best server to dispatch http requests. For wisej that is the first request that upgrades the connection to WebSocket mode.

Yes, if the application server goes down the session is lost.

Best

Luca

 

  • Luca answered Oct 26, 2016 - 11:45 pm
0 votes
In reply to: ListView ColumnHeader

Hi Mark,

I stopped my test right away when I found out that code are not being cleaned up when removing the listview from the window/form using 1.2.82.

Actually, I noticed that ListView since 1.2.80. I did try to add items at runtime and also didn’t see anything. Didn’t report it to Support thinking it was to premature to do that as they haven’t announced yet the availability of the control during that time.

Nice to hear from you. How is your ReVision going?

Best.

  • Cris answered Oct 26, 2016 - 10:06 pm
0 votes
In reply to: sqlServer Mode

Hi Luca,

We are talking about ARR, right?

Quoting Web farms in .NET and IIS part 3: Application Request Routing ARR

ARR doesn’t have its own solution for high availability so it cannot handle failures to the server hosting ARR – the result is that the ARR server becomes a single point of failure.

So my Wisej web server no. 1 is part of a Web Farm. If my server no. 1 goes down, what happens to this guy that was in session on web server no. 1? Since Wisej sessions aren’t transferable, I guess he will get a new session on server no.2 but all context will be gone. Will he have to start from the beginning, login, etc?

  • Tiago Freitas Leal answered Oct 26, 2016 - 9:54 pm
  • last active Oct 26, 2016 - 9:59 pm
0 votes
In reply to: ListView ColumnHeader

Just curious I did a test adding items and it seemed that all the rows were there but empty

  • Mark Reed answered Oct 26, 2016 - 9:50 pm
0 votes

Hi Frank,

I’ll make one and send it to you.

Regards.

  • Cris answered Oct 26, 2016 - 7:53 pm
0 votes

Thanks Cris.

AutoCompleteMode for Combobox should be working. Can you please send us details or a sample to verify ?

Best regards
Frank

0 votes

Hi Frank,

Confirmed working in TextBox. Inform you later about combobox. And I have a quick question for you and don’t want to create another thread for this.

Is AutoCompleteMode for ComboBox done? Just wondering. It seems not working.

Thanks.

  • Cris answered Oct 26, 2016 - 7:35 pm
0 votes
In reply to: FlowLayoutPanel

Hi Frank,

Using the same sample I sent you, I am seeing the same behaviour when flowlayoutpanel  and textboxes are added at runtime. I have still to set Autosize=False so the textbox won’t anchor right and use the full row.

Using the designer, if i click & drag a TextBox into the window/form without the flowlayoutpanel, the default width is zero (0) and can’t see the textbox if it loses focus. If  it is into a flowlayoutpanel, it still occupies the full row of the panel as before. But it is now in proper order.  Autosize should be set to False in Properties window to make it work.

Double-click a textbox has a different story. Of course, the first you do it, it goes on top. Double-click again and it goes on top of the first one. The third-time you double-click the  textbox, it will already be in proper sequence. So, the order of textboxes inside the flowlayoutpanel would be textBox2, textBox3, textBox4,…. and textBox1 would be the last one.  Also, set Autosize=False to make it work.

I am now using 1.2.82. Honestly, I have already tested this in 1.2.80 and it seems working properly already.

Thanks.

 

  • Cris answered Oct 26, 2016 - 7:29 pm
Showing 10281 - 10300 of 11k results