All Answers

0 votes

Hi Vincent,

We do have a few already available as extensions. Check out the DevExpress control set: https://github.com/iceteagroup/Wisej-Ext-DevExtreme

 

untitled

If you have any questions about it, please let me know!

Regards,

Levie

0 votes

See video of my iphone in screen mirroring. It’s a FlowLayout with lots of controls. The inertia scrolling seems fully functional.

https://drive.google.com/file/d/1LD7oYMPqiPbJ7mEFEn8vMBuS2liEdFvd/view

Can you send a small test project to show that issue?

  • Luca answered Jun 22, 2021 - 5:35 pm
0 votes

Hi Alaa,

Thank you for your prompt reply. Your advice helped a lot, now everything works as it should.
I have one more question about the same element. Should I put it in a separate thread or can I continue here?

Brgds,
Dmitry

  • Dmitry answered Jun 22, 2021 - 5:02 pm
0 votes
In reply to: Using html forms

Wisej AspNet Panel

I leave an updated version of this sample.

 

  • Paul answered Jun 22, 2021 - 4:50 pm
0 votes

Hi Vincent,

Just followed the steps you provided but I couldn’t reproduce the issue.

Can you please tell me what version of Wisej you’re using ?

Thank you,

Alaa

0 votes
In reply to: Ebbedded link

Hi Nello

I attach a small sample that shows how to open a window with a url as property

Note that if website implement X-Frame-Options  to “deny” there nothing to do and those externar website can’t be displayed into the Iframe

Regards and  happy coding

 

  • Paul answered Jun 22, 2021 - 4:00 pm
0 votes

Hi Dmitry,

You can change the selection behavior by using the ControlCreated event.

private void coolClock1_ControlCreated(object sender, EventArgs e)
{
this.coolClock1.Call(“setSelectable”, false);
}

This code sample will change the selectable status of the CoolClock control once it’s created.

HTH,

Alaa

0 votes

Hi Ulisses,

I’m attaching a small sample that demonstrates using the dxPivotGrid with an OLAP data source.

There are differences between the WinForms version and the Wisej version since the Wisej version of the control is based on the HTML5 JS DevExtreme control set.

You can find information on the dxPivotGrid XmlaStore configuration here: https://js.devexpress.com/Documentation/ApiReference/Data_Layer/XmlaStore/Configuration.

Note, when specifying the URL of the OLAP server, it should include the MSMDPUMP.dll url: “This should be the MSMDPUMP.dll URL and usually has the following format: http://<servername>/OLAP/msmdpump.dll.”

HTH,

Levie

1 vote

Wisej simply passes on all server variables and headers received by the server. You can also try with the self hosting option we already have using Katana, which is also Microsoft’s implementation of OWIN.

  • Luca answered Jun 22, 2021 - 1:34 pm
1 vote

Thank you Luca. It took a while but now I could make it work using Application.ServerVariables[“HTTP_X_REAL_IP”] to get the information I need.
Do you know if this will still work work once using WiseJ for .net Core (without IIS but e.g. Kestrel) ?

  • Tobias answered Jun 22, 2021 - 1:30 pm
0 votes

Hi Praveena,

We have a sample that might suit your needs. You can find it here: wisej-examples/UploadFiles at 2.2 · iceteagroup/wisej-examples (github.com)

Wisej makes it easy for you to build your own custom upload control, you can hide the text in the upload button or hide the upload control completely and show a custom list or grid or data repeater or a panel showing the uploaded files in any format.

You can also drag and drop the file(s) from the desktop with AllowDrop = true and with that you can get the file(s) name(s) from the Drop event like in WinForms.

Or you can go with another approach which is having multiple Upload controls, as all upload elements in all browsers takes one or multiple files at a time.

HTH,

Alaa

0 votes
In reply to: Ebbedded link

Use the IFramePanel.

  • Luca answered Jun 22, 2021 - 1:23 pm
0 votes

I run your sample:

  • Window1 is maximized therefore it is resized with the browser therefore it shows the scrollbars when Window1 is resized
  • Window2Search is created not maximizable, not resizable, not movable, therefore it doesn’t resize, if it doesn’t resize the content obviously always fits

It’s all working correctly.

You can:

  1. Maximize Window2Search so it’s resized automatically when the browser resizes; or
  2. Resize it programmatically when the browser resize depending of what you need to leave as a margin since we cannot guess it. Attach to the Application.BrowserSizeChanged event and use Application.Browser.Size or Screen.Bounds to get the size of the browser.

There is no different between a window or a modal window and resizing the browser resizes the browser and automatically resizes the page and maximized windows. It cannot possibly resize floating windows.

 

  • Luca answered Jun 22, 2021 - 1:22 pm
0 votes

Hi, in this project, there are two windows. The parent window shows the scrollbars when the browser is resized. No matter whether the parent window is independent or a child window. But the search window is not showing a scrollbar when the browser is resized. Herewith I have attached both the images and the project.

0 votes

Hi Males

In addition to that my coworker suggests, I attach a sample for console log using textbox

Regards

 

  • Paul answered Jun 21, 2021 - 10:31 pm
0 votes

Hi Males,

You can use this synthaxe

textBox.Select(int.MaxValue, 0)

Best,

Kevin (ITG)

  • Kevin answered Jun 21, 2021 - 10:07 pm
0 votes

Works ! Thanks.

0 votes

Use the Anonymous = true property on the controls that you want to make transparent to the pointer.

https://wisej.com/support/question/how-to-register-a-click-or-tap-anywhere-on-a-user-control-or-panel

  • Luca answered Jun 21, 2021 - 7:50 pm
0 votes

You can set the DataSource to the same datasource used to populate the grid. The grid itself is not a datasource.

  • Luca answered Jun 21, 2021 - 7:49 pm
0 votes
In reply to: Blank Page on start

Also looks like your Default.html is inside /bin?

  • Luca answered Jun 21, 2021 - 5:50 pm
Showing 3561 - 3580 of 11k results