All Answers

0 votes

Thanks for your quick reply, Frank! I forgot to specify I’m using Wisej.Web.Combobox (not sure if you have non-web components too)

Do the suggested Winforms based samples fit in my scenario?

Thanks

Orlando

  • Orlando answered May 9, 2018 - 3:33 pm
  • last active May 9, 2018 - 3:34 pm
0 votes

Hi Orel,

we just added RTL support to the RibbonBar extension at GitHub:

https://github.com/iceteagroup/wisej-extensions

Our website download will be updated shortly, too.

Best regards
Frank

 

0 votes

The Desktop doesn’t scroll. The ScrollBars property is inherited from ContainerControl but should have been shadowed and hidden. When supported, ScrollBars.Both (and the other values) mean that it scrolls both directions, or vertically only, or horizontally, or never. It’s the equivalent of overflow-x: auto and overflow-y: auto.

To keep floating windows on the screen you can use the new property KeepOnScreen.

  • Luca answered May 9, 2018 - 3:27 pm
0 votes

Safari doesn’t support it.

  • Luca answered May 9, 2018 - 3:24 pm
0 votes

Hi Orlando,

this is not supported by AutoComplete. Neither in Wisej nor in Winforms.
In that case you will have to do your own custom filtering of the ComboBox.

There are various Winforms based samples around that you might want to adapt to Wisej.

Best regards
Frank

0 votes

Hi Luca,

I set ScrollBars=Both (Wisej.Web.Desktop) and actually expect that the scrollbars appear as soon as I move a window outside the visible desktop area, for example … but nothing happens as you can see on the attached screenshot.

Best, Harald

0 votes

Hi Luca,

Do you have any update about this fix ?

I set AutoComplete to “Off” but Chrome still fill the textbox whit data.

 

Wisej 1.4.86

Chrome 66.0.3359.139 (64 bit)

 

Thank you!

1 vote
In reply to: Copy text to clipboard

Found a better solution. You can do both steps with 1 click and 1 button. Attach the “execute” event using the Javascript extender and use this js code:

setTimeout(function(){
    
    Wisej.Core.copy();
    
    var box = new wisej.web.AlertBox().set({
        icon:"information",
        message:"Clipboard data copied!"
    });
    box.show();
    
}, 500);

 

Adjust as needed. Then attach the click event handler on the server (same button) and use SetClientText(). Turns out that the click will execute both, the client code and the server code and setTimeout() marks the function as “safe” when started from a user event. You  may have to adjust the 500ms timeout or check if Wisej.Core.clipoardText is > “” or reschedule.

 

  • Luca answered May 8, 2018 - 10:20 pm
0 votes

Show the scrollbars when there is nothing to scroll?

  • Luca answered May 8, 2018 - 9:51 pm
0 votes
In reply to: Column fliter

We can’t add the filter row because of the extreme server integration of the Wisej built-in controls. You can easily use the devexpress grid with Wisej. It’s a lot easier when you simply have to show data on the client.

  • Luca answered May 8, 2018 - 9:49 pm
  • last active May 8, 2018 - 9:50 pm
0 votes

Thanks Angelo,

we could reproduce the problem and logged it as issue WJ-8927.

We´ll inform you when a fix is available.

Best regards
Frank

0 votes

Hi Simone,

I have tried to reproduce in a sample but failed so far.
Where is the function to set the checkboxes called ?
Any other logic bound to the CheckedListbox ?
Can you please try to isolate that code into a test case and either post it here or send it to frankATiceteagroup.com ?

Thanks in advance.

Best regards
Frank

 

0 votes

Hi Orel,

you can change them through localization. See here:

https://wisej.com/docs/html/Localization.htm

Hope that helps.

Best regards
Frank

0 votes
In reply to: Copy text to clipboard

Thank you Luca, I see the distinction now.

I implemented it using a button (called “Copy”) which sets the text on the client side, and displays a confirming button (called “Copy URL?”).  The confirming button uses the javascript extender control and executes the javascript to do the copy().

Works perfectly, thanks.

 

 

0 votes

Thanks Nikolajs,

it´s logged as WJ-8926 and a fix will be included in the next release.
I´ll inform you when it´s available.

Best regards
Frank

0 votes
In reply to: Copy text to clipboard

You can’t call “copy()” from the server, that’s why we need two steps. All browsers stop ajax calls from setting the clipboard. copy() must be called on the client by a client-initiated event, like a user click and a javascript client side only event.

  • Luca answered May 7, 2018 - 4:15 pm
0 votes

Here are the issues:

  1. The label doesn’t disappear, it goes behind the iFramePanel2 because when you add a control in the Controls collection the added control is at the top. The bug here is that Wisej updates the z-order later, the label should have gone behind right away. If you want the label on top use iFrameLabel.BringToFront(). EDITED: I’m wrong about this one since the label is added after the iframe. EDITED AGAIN: I was right and wrong, Controls.Add() go behind and BringToFront() is needed.
  2. iFrame elements in most browsers are fully reloaded by the browser when their DOM element is moved in the DOM. Which happens when the z-order is changed. So, because of 1, you see this happening when the z-order is updated. However, because of this browser behavior it would have happened anyway in your app as soon as the z-order of any control causes the iFrame element to move. https://bugs.webkit.org/show_bug.cgi?id=13574https://bugs.chromium.org/p/chromium/issues/detail?id=37485 etc…
  3. If you hit refresh you get an error because you have a background task always calling iFrame.getWindow().postMessage() without checking if the window exists and since the task runs continually it will hit the browser before the iframe is created and the window exists.
  • Luca answered May 4, 2018 - 4:01 pm
  • last active May 4, 2018 - 4:24 pm
0 votes

Hi Ronny,

thanks for your interest in Wisej. Please contact me with your license number at frankATiceteagroup.com and I will activate your license.

Best regards
Frank

0 votes
In reply to: iFramePanel undefined

Hi Nikolajs,

thanks for providing a test case. We have logged the Bug as WJ-8922.

It´s fixed and included in Wisej development build 1.4.88.

Best regards
Frank

0 votes
In reply to: Menu item event click

Hi Angelo,

WJ-8921 is fixed in the latest Wisej development build (1.4.88).

Best regards
Frank

Showing 7421 - 7440 of 11k results