All Answers

0 votes

Please send us a reproducible test case and we’ll investigate.
You can post it here or send to supportATwisej.com

Best regards
Frank

0 votes

I am using the same theme. No matter which theme I use the result is the same (as in that the designer and runtime look very different)

For example here is what the default Clear-3 theme looks like in both the Designer and the Default.json

  • x3rt answered Jun 20, 2024 - 11:10 pm
0 votes

Hi,

this is most likely caused by using different themes in the designer and “at runtime”.

Please make sure that the theme you are using in the Designer (see lower left corner in the Designer toolbar)
is the same you set up at runtime. (either in web.config or in default.json).

Find more information here:

https://docs.wisej.com/docs/concepts/theming#changing-themes

Best regards
Frank

0 votes

ListView itself is a control in Wisej.

Documentation links: https://docs.wisej.com/docs/controls/lists/listview https://docs.wisej.com/api/wisej.web/lists-and-grids/listview

You can create and add items to a ListView like so:

ListViewItem listViewItem1 = new ListViewItem("item1");
ListViewItem listViewItem2 = new ListViewItem("item2");
ListViewItem listViewItem3 = new ListViewItem("item3");

ListView listView1 = new ListView();
listView1.Items.AddRange(new ListViewItem[] {
listViewItem1,
listViewItem2,
listViewItem3});

this.Controls.Add(listView1);

As a replacement for ListViewGroup specifically, look into using ListViewSubItem and ListViewSubItemCollection

The demobrowser has an example of a ListView using subitems: https://wisej-demobrowser.azurewebsites.net/#Grids/ListView/Features
Source code for the example: https://github.com/iceteagroup/wisej-demobrowser/blob/main/Demos/Grids/Wisej.DemoBrowser.ListView/Features.cs

0 votes

Hi Ezequiel,

there are no plans for a ListViewGroup in Wisej.NET.

If you are interested in a custom evaluation of alternatives you might want to reach out to SalesATwisej.com

Best regards
Frank

  • Frank (ITG) answered Jun 18, 2024 - 3:30 pm
  • last active Jun 18, 2024 - 3:31 pm
0 votes

Hi Madhuri,

JQGrid is not our product. We can help you and check possible integration options but that’s beyond free Wisej.NET support.
If you’re interested in our Professional Services, please contact us at SalesATwisej.com

Best regards
Frank

0 votes

I am currently working on a project that involves using Wisej.net, and I need some assistance with how to create subgrid in JQGrid with Wisej.net and C#.

0 votes

Yes, you can integrate any JavaScript widget with Wisej.NET. You will need to use the Widget class in order to do the integration: https://docs.wisej.com/docs/controls/content/widget

I looked up TradingView, and they are JavaScript widgets, so they can certainly be integrated: https://www.tradingview.com/widget-docs/widgets/

When you say “does not return any data”, do you mean that the widget does not show the chart? Or is it showing the chart, but you’re trying to return additional information which is not being returned?
If the widget does not show the chart at all, make sure that you are setting the packages and options of the widget. You can set these in the designer.

For example, for this widget: https://www.tradingview.com/widget-docs/widgets/tickers/ticker-tape/ Based on the code example, you can see that the package source is https://s3.tradingview.com/external-embedding/embed-widget-ticker-tape.js

You will also need to set the options of the widget, which you can do in the designer. The options are a JSON object. You can read the Wisej documentation on widget options here: https://docs.wisej.com/api/wisej.web/content/widget#options

 

Additional Resources

There is a blog post that walks you through a widget integration with code examples: https://docs.wisej.com/docs/controls/content/widget

Other useful Wisej documentation:
https://docs.wisej.com/docs/concepts/javascript

 

You may also find it helpful to check the browser console for errors by pressing F12.

Hope this helps!
-Julie

  • Julie(ITG) answered Jun 14, 2024 - 2:06 pm
  • last active Jun 14, 2024 - 2:19 pm
0 votes

Hello,

Please wrap up a sample following the guidelines under “Before Posting an Issue” https://wisej.com/support/question/forum-guidelines

We will see if we can reproduce with your sample and go from there.

Thanks,

Julie

0 votes

Hi Frank,
yes thats the reason from this lines
<TargetFrameworks Condition=”‘$(Configuration)’ == ‘Design'”>net48;net8.0</TargetFrameworks>
<TargetFrameworks Condition=”‘$(Configuration)’ == ‘Debug'”>net8.0</TargetFrameworks>
so to start the designer we go to “Design” that the multi targeting is activ

With “normal” Pages and Forms that based on Page Or Forms is everything fine.
But wenn i create a BaseForm : Form and a Second MyForm : BaseForm.
I cant open the designer.
So the desinger throw the Error.
Or sometimes i get from “normal” Pages a “Timeout to connect with the named Pipe”

0 votes

Hello Juan,

Please update the latest VSIX extension, this was an issue present with 3.5.6 and it was fixed with the latest 3.5.7.

To download the latest version, click HERE.

Best,
Alaa

//

0 votes

Hi Luca,

Wisej.NET designer needs .NET Framework 4.8 to work so you have to go with Multi Targeting.

Best regards
Frank

0 votes

You can add the missing pieces in a theme mixin, see attachment.
Just unzip it and put it into your themes folder.

Best regards
Frank

0 votes

Thank you!

I am with Bootstrap-4 for a reason. I like it best.

Can something be done so that Bootstrap-4  to support odd and even state for the Table Row appearance?

Kind regards!

  • mgmst answered Jun 9, 2024 - 10:07 am
0 votes

Hi Nicholas,

just use the ParentRow property of a DataGridViewRow to build up your hierarchy.

Best regards
Frank

0 votes

Hi,

changing the color definitions is working, but only if the Theme you are using handles the odd and even state for the Table Row appearance.
You can compare Blue-1 (that does handle the states) with Bootstrap-4 (which does not handle the states).
So changing the named colors only have an effect if the theme also uses the states.

Best regards
Frank

0 votes

Application.UserIdentity is not avaliable in .net core (.net 6.0, .net 7.0, .net 8.0).

You will have to use Aplication.User instead.

0 votes

My Freight Orders screenshot shows the vertical scrollbar..
I have attempted to force all governing layoutpanels that are housing these grids to the maximum
right side of the screen with anchors, dock styles
etc — thus my question,    but I can’t get a horizontal scrollbar to manifest.
As you can see from the earlier screenshot there is a bit of screen real-estate still available.. off to the right
I’m assuming this is the nature of the problem the dgv isn’t at the extent/extreme of the
page/usercontrol and that’s why there is no horizontal scrollbar … ?   ? Dock, Anchor ?

I am honestly just trying to avoid crafting up this usercontrol (page) from scratch as the conversion seems to

have lost this functionality.. as shown in this attachment . I am   pretty sure I could craft what I want manually

0 votes

The scrollbars in the DataGridView have absolutely nothing to do with the scrollbars in the TableLayoutPanel. I don’t see any “madness” in the screenshots.

The content of a TableLayoutPanel is scrolled when AutoScroll is true and the content overflows. The content of a DataGridView is scrolled when the rows or columns don’t fit the DataGridView.

  • Luca answered Jun 5, 2024 - 5:43 pm
0 votes

Yes  apologies I assumed my question was going to come off as pretty cryptic . I just want some degree of consistency in how to get scrollbars to display in my DataGrid Views . The image attached earlier is my best description ScrollBar_Insanity.png  That dgvResults needs horizontal scroll bars and I cant confirm if I need to set Auto Scroll true on ALL of the  TableLayOutPanels “above” it,   or  ScrollBars = BOTH on all the TableLayOutPanels  above it  or if any of this is affected by the Dock property or Anchor property  etc etc   its just maddening .. this little test project didn’t help any…. its still clear as MUD

Thank  you !

Showing 481 - 500 of 11k results