All Answers

0 votes

Makes sense – I cant tell on the themes page any date of when files are updates – maybe you can add that so that everyone knows.

I was just thinking that a week ago when I went to see if any new themes have been added or updated – but the page looks the same with no “Updated on” anywhere on any of the themes.

  • edmond girardi answered Oct 14, 2016 - 3:13 pm
0 votes

Hi Sebastian,

Thank you, it’s fixed in the current update coming online later on today. It was caused by the groupbox ability to enable/diable its children when the checkbox feature is turned on.

Best,

Luca

  • Luca answered Oct 14, 2016 - 2:00 pm
0 votes

The issue is the outdated Material-3 theme file. The extra themes are not updated with the beta installer and when changed need to be redownloaded from https://wisej.com/themes. We have been adding/changing properties in the themes during this beta phase, hopefully it will be a more rare occurrence going forward.

I tried your sample with the latest Material-3 and it works fine. The error in chrome is a missing property that the theme was trying to set.

Best,

Luca

  • Luca answered Oct 14, 2016 - 1:46 pm
0 votes

Thanks Robin.

I could reproduce it and logged WJ-7694 for it.

Best regards
Frank

0 votes

Material-3 theme.

Application is attached. Run it – it works fine. Drop a listbox control in the right hand panel “tools” for example, and run again – see results. There is an error in the Chrome console as well as you will see.

Its not a full application, I was prototyping something for a customer and noticed this issue

 

  • Edmond Girardi answered Oct 13, 2016 - 2:36 pm
  • last active Oct 13, 2016 - 4:28 pm
0 votes

Hi Cris,

for your reference:

I have logged WJ-7691 & WJ-7962 (bugs) and WJ-7693 (enhancement requests) related to this questions.

Best regards
Frank

0 votes

Hi Alex,

I have added enhancement request WJ-7690 for it.

Thanks
Frank

0 votes
In reply to: DGV Cell Location

Hi, many thanks for your proposal.

Actually I was only trying to create a temporary replacement for a Master-Detail (hierarchical) DataGridView.
Though the native Windows Forms control datagridview also doesn’t support Master-Detail views within a single control, CodeProject or c-sharpcorner are offering some not too difficoult samples for it.
As a first try I took a project of Sayed Shanu http://www.c-sharpcorner.com/uploadfile/asmabegam/master-detail-datagridview-in-c-sharp-winform/.

The conversion is quite simple, for the positioning of the detailDGV I took the iteration way as you proposed (even if it’s not exactly an elegant solution).
My only problem is the image column on the left. The images get visible only after the first mouse click.
What’s wrong with them?

Thanks, Andreas

  • Andreas answered Oct 13, 2016 - 3:10 pm
0 votes

Use pictureBox1.ImageSource=”messagebox-error”. Check in the theme file for the different icon names under “images”.

The name after “messagebox-” corresponds to the MessageBoxIcon enum. But you can use any theme image name in ImageSource.

Best,

Luca

  • Luca answered Oct 13, 2016 - 12:38 pm
0 votes
In reply to: DGV Cell Location

Hi Andreas,

At the moment we didn’t implement the GetCell/Row/ColumnDisplayRectangle methods. In WinForms they are mostly  used to draw the cells and in Wisej the UI is entirely managed by the themes and the javascript widgets.

It’s relatively easy to add those methods, the only issue is the scroll position. I will log an enhancement for these methods.

As a quick workaround you can iterate the columns and rows and get the location by adding the column.Width and row.Height. WinForms does the same internally. What do you need the cell rect for? If it’s used mostly in clicks, it’s faster to make the widget return the rect with the click event and avoid the iteration.

Best,

Luca

  • Luca answered Oct 12, 2016 - 5:27 pm
0 votes

Thanks, Luca, that will be great. My application relies on such a calendar, so I’ll be glad to help with it, either with debugging or any other way you see appropriate.

Best,
Alex

  • Alex Prinias answered Oct 12, 2016 - 2:22 pm
0 votes

Not ready, but I will see if it’s usable enough to upload it or send it to you directly early next week.

/Luca

  • Luca answered Oct 12, 2016 - 1:58 pm
0 votes

Hi Luca,

Is your fullcalendar early version ready to be shared? I’d love to give it a try!

Best,
Alex

 

  • Alex Prinias answered Oct 11, 2016 - 8:03 pm
0 votes

Hi Luca, thanks for your answer.

I didn’t know about the limit in WinForms. In such case, I thought that it should set the value to Max(value, 4) silently, it was the exception that struck me. If WinForms throw the same exception, I would leave it as it is to be as close to WinForms as possible. In any case is nothing important.

Best,
Alex

  • Alex Prinias answered Oct 11, 2016 - 7:59 pm
0 votes

It’s a limit set in the code to be the same as WinForms. We can set it to 1 or 0 (becoming hidden).

  • Luca answered Oct 11, 2016 - 7:51 pm
0 votes

I can’t reproduce. What theme are you using? Can  you also see if chrome shows a javascript error with F12?

Another test would be to open dev tools (again F12) and hit refresh in the browser to ensure that the js libraries are refreshed.

Let me know.

Thanks,

Luca

  • Luca answered Oct 11, 2016 - 7:44 pm
0 votes

Hi Luca,

That’s what I have in mind, set the Collapsed property at runtime.

Thanks for the info.

  • Cris answered Oct 11, 2016 - 7:42 pm
0 votes

Both bugs. 🙂

Thanks.

  • Luca answered Oct 11, 2016 - 7:37 pm
0 votes

Hi Cris,

There are still a number of open issues with panels starting in the collapsed state from design time. If you design the window in the same not-collapsed and add, as a workaround, this.splitContainer1.Panel1Collapsed = true in Window1.OnLoad() it works a lot better. Remove also this.splitContainer1.Panel1.Collapsed = true. It’s an inner property that shouldn’t be serialized.

Another issue is the different internal bounds when sliding a panel that had the header at the top and collapsed to the sides. They should all be fixed within the next days.

Also, MonthCalendar cannot dock. It can, but the inner size is always the same as it depends on CalendarSize. As of now the calendar widget cannot adapt its internal layout to the outer size. The size is regulated by the theme. We may be able to make the inner layout dynamic later.

Thanks,

Luca

 

  • Luca answered Oct 11, 2016 - 7:35 pm
0 votes

Hi Luca,

Using the same sample you provided, I can see now the DomainUpdown control and AddressEditor but I noticed the following:

If I click cell 0-0 (row, col) and press Enter or F2 to start editing, the domainupdown shows up. If I press down arrow key, it ends the editing mode and executes the CellEndEdit event and the Focus Indicator now sits in cell 1-0. I can no longer move to another cell using the arrow keys and have to use the mouse and click back cell 0-0.

The same thing happens if I press the Tab key while editing cell 0-0. While in cell 0-1, pressing Enter of F2 would not open the AddressEditor form.

Is this a bug or it’s by design?

Build 1.2.77.0

Thanks.

  • Marcy answered Oct 11, 2016 - 7:33 pm
Showing 10361 - 10380 of 11k results