All Answers

0 votes

Hi Nic,

WJ-7385 is included in the latest beta build (1.2.19).

Best regards
Frank

0 votes

Hi Mark,

WJ-7386 is fixed in build 1.2.19.

Can you please retry ?

Best regards
Frank

0 votes

Hi Tiago,

enhancement WJ-7387 is included in latest beta build 1.2.19. Thanks for your suggestion !

Best regards
Frank

0 votes

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

0 votes

Alex,

this problem has been fixed in beta build 1.2.19.

Best regards
Frank

0 votes
In reply to: MDI Window

Alex,

all three bugs (WJ-7402, WJ-7403, WJ-7404) have been fixed in our latest beta (1.2.19).

Best regards
Frank

0 votes
In reply to: ToolStrip, MenuStrip

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

0 votes
In reply to: Beta Updates

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
0 votes
In reply to: ToolStrip, MenuStrip

Luca,

two minor observations:

  1. you said that the MenuItem-derived class will show in the designer. However, I cannot see that. I mean the designer shows only menuitems, it does not make a distinction on what kind of items they are, like the Toolbar designer where one can set the Toolbutton style (Pushbutton, Dropdown etc). Unless I’m missing something.
  2. Playing with the Menubar designer to check if I could see the MenuLabel, I noticed that if I delete an item (select it and press the red x) the item does not disappear from the menubar. And it is not only a refresh matter in the main designer window: the next time you open the menubar designer, the item you have deleted is there.

Best,

Alex

  • Alex Prinias answered Jul 6, 2016 - 9:19 pm
0 votes

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

 

  • Corvin answered Jul 5, 2016 - 11:49 pm
  • last active Jul 6, 2016 - 8:44 pm
0 votes

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:

  • ASP.NET/MVC by default reload the page on any active interaction (a click, item selection, etc.) This kind of HTML postback doesn’t work well with Wisej since it would reload everything on each postback. So that WisejPanel in ASP.NET will be an ajax panel.
  • When you use an UpdatePanel (or any third party ajax panel) in ASP.NET/MVC, all the ASP.NET controls that are not inside the panel are not reloaded on the callback and are not available to the server code. Wisej code, therefore, cannot reference those controls.

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

 

  • Luca answered Jul 6, 2016 - 6:52 pm
0 votes
In reply to: ToolStrip, MenuStrip

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 answered Jul 6, 2016 - 6:44 pm
0 votes
In reply to: ToolStrip, MenuStrip

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

  • Alex Prinias answered Jul 6, 2016 - 5:38 pm
0 votes

Thanks Alex !

I have logged WJ-7406 for that problem.

Best regards
Frank

0 votes
In reply to: ToolStrip, MenuStrip

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

 

 

  • Luca answered Jul 6, 2016 - 2:17 pm
0 votes

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

 

  • Nic Adams answered Jul 6, 2016 - 7:02 am
0 votes

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

  • Luca answered Jul 5, 2016 - 11:38 pm
0 votes
In reply to: MDI Window

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

  • Alex Prinias answered Jul 5, 2016 - 9:31 pm
0 votes
In reply to: ToolStrip, MenuStrip

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

 

  • Alex Prinias answered Jul 5, 2016 - 9:26 pm
0 votes

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.

  • Tiago Freitas Leal answered Jul 5, 2016 - 8:49 pm
  • last active Jul 5, 2016 - 9:10 pm
Showing 11001 - 11020 of 11k results