Hi Nic,
WJ-7385 is included in the latest beta build (1.2.19).
Best regards
Frank
Hi Mark,
WJ-7386 is fixed in build 1.2.19.
Can you please retry ?
Best regards
Frank
Hi Tiago,
enhancement WJ-7387 is included in latest beta build 1.2.19. Thanks for your suggestion !
Best regards
Frank
Hi Mark,
please note that WJ-7397 has been fixed in our latest beta build (1.2.19).
Can you please retry using the changes for web.config that Luca has suggested in his previous answer.
Thanks in advance !
Best regards
Frank
Alex,
this problem has been fixed in beta build 1.2.19.
Best regards
Frank
Alex,
all three bugs (WJ-7402, WJ-7403, WJ-7404) have been fixed in our latest beta (1.2.19).
Best regards
Frank
Alex,
point 2 is logged as WJ-7408 and should be fixed in 1.2.19 that has just been uploaded.
Can you please verify ?
TIA
Frank
We´re happy to announce a new build (1.2.19). It includes the following fixes and additions:
| Item | Type | Priority | Severity | Title | Resolution |
| WJ-7408 | Bug | Low | Trivial | Removing a menu item from a MenuBar doesn’t update the the design view. | Complete |
| WJ-7402 | Bug | High | Major | MdiChildActivate is not fired. | Complete |
| WJ-7406 | Bug | Low | Trivial | Layout problems in an MDI when FormBorderStyle.None is set in the designer | Complete |
| WJ-7407 | Enhancement | Medium | Major | Change DGV and TV collection editors to update the designer live. | Complete |
| WJ-7405 | Bug | Low | Trivial | Cannot design window when creating a new WebApplication with VB template | Complete |
| WJ-7404 | Regression | Low | Minor | The TabPage close button is not visible anymore. | Complete |
| WJ-7397 | Enhancement | Low | Trivial | Add support for classic pipeline. | Complete |
| WJ-7403 | Bug | Low | Trivial | TabIndexChanged, TabStopChanged, and other inherited events are visible in Wisej.Web.Form and Wisej.Web.Page. |
Complete |
| WJ-7388 | Enhancement | Medium | Minor | Add ColumnType to DGV column editor to change the column type at design time. | Complete |
| WJ-7389 | Bug | Low | Trivial | DGV cell style design editor doesn’t update the design view. | Complete |
| WJ-7387 | Enhancement | Low | Trivial | Add collapse all/expand all to ThemeBuilder code editor. | Complete |
| WJ-7386 | Bug | Low | Trivial | Animated GIFs assigned as an embedded image lose the animation. | Complete |
| WJ-7382 | Bug | Low | Trivial | Tabbing on the last cell in the second to last row jumps to the previous row. | Complete |
| WJ-7384 | Bug | Low | Trivial | Tabbing backward when in the first column in a DGV may cause an exception. | Complete |
| WJ-7385 | Bug | Medium | Minor | Recreating columns in DGV with an active cell causes “Unable to get property ‘visX’ of undefined or null reference” |
Complete |
Luca,
two minor observations:
Best,
Alex
Hi Luca,
first of all – Wow, that’s the quickest support I ever got !
I’m not using any WebForms or aspx-pages but I think basically it should show me how to handle the proposal so let’s give it a try.
Thank you very much
Corvin
hehe, you got me online right at the time.
We have and AspNetPanel control in Wisej, but that’s for including an ASP.NET/MVC page as a child panel in a Wisej container.
The WisejPanel ASP.NET/MCV control is not developed yet and we still need to identify use cases. If you could give me either a small sample app with a placeholder for where you’d like to use a Wisej component it would help. Or a description of the ASP.NET/MVC page that needs to use a Wisej component, what kind of component and how you’d like to use it would also help.
These are the issues/problems:
Additionally, Wisej also exposes a full javascript object model in the window.App namespace reflecting all the visual objects in the wisej application. So the ASP.NET page could access the components from the client.
Anyway, more info would help us.
Best,
Luca
Absolutely. Add this to the config:
config.appearance = "menulabel";
Then add a file named my-menu.mixin.theme under /Themes:
{
"appearances": {
"menulabel": {
"inherit": "menu/item",
"states": {
"default": {
"styles": {
"transform": "rotateZ(15deg)"
},
"properties": {
"textColor": "red",
"icon": "icon-settings"
}
}
}
}
}
}
The mixin theme will add the new appearance to any theme as it’s loaded in the app. Otherwise you can add the new appearance directly in any theme file.
Best,
Luca
Luca, this is great! Not only it works, but it gives an idea of the flexibility of the system. Is it also possible to customize the appearance of this MenuLabel derived class from a theme? This is great stuff!
Alex
Thanks Alex !
I have logged WJ-7406 for that problem.
Best regards
Frank
Hi Alex,
Please try this class in your app. Just an example, but it shows how flexible this thing is. And since it extends MenuItem it will also show up in the menu editor in the designer.
public class MenuLabel : MenuItem
{
public MenuLabel() { }
public MenuLabel(string text) : base(text) { }
protected override void OnWebRender(dynamic config)
{
base.OnWebRender((object)config);
// make text always bold.
config.label = "<b>" + this.Text + "<b>";
// make it anonymous to ignore browser events.
config.anonymous = true;
}
}
Best,
Luca
Tiago,
I’m pretty sure I always have VS closed when applying the updates to wisej (but of course I could be wrong) . I’m leaning more towards VS “glitch”. Just taking a look now I have 5 instances of each wisej control in my toolbox.
Nic
Hi Corvin,
A Wisej page would take over the browser. Would an ASP.NET example with an aspx page containing a button that shows a Wisej form and when the form is closed updates the ASP.NET page work for you?
Best,
Luca
Dear Luca,
Thank you for your answers.
Forget the cascading, I just wanted to know if it is there and I can’t see it, just out of curiosity. I don’t think it’s a useful view anyway.
Alex
Dear Luca,
From what I see in the qooxdoo page you pointed out, the only thing missing compared to the picture I sent you is the “header” of each submenu (which is a ToolStripLabel, a non-clickable item and I was showing it in bold font). If you can make also this, it would be great, I find it very useful to have all choices in one dropdown instead of creating popup submenus.
But I can understand the whole thing won’t be ready before release.
Best,
Alex
Hi Luca,
I found that post too. I also found some other posts that point in the same direction. After the repair of VS2015 if the problem remains I’ll try those steps (repair is taking around 6/7 hours).
Forcing VS to close when installing may help to prevent this problem.
