All Answers

0 votes

Hello Gianluca,

is it possible to integrate the actual Devexpress Grid V. 20.1 (WinForms)? We would use it because it has built in Kanban views and Kanban capabilities.

If it is possible is there an example ho to integrate the Devexpress Grid?

Thx for your info.

With best regards

Johann Gregorich

ITG Consulting, Vienna, Austria

0 votes

Hi Onur,

typically the DataRepeater is used in a virtual mode and the items collection only contains a fixed number of items
(usually the visible and a couple of prefetched ones).
If your DataRepeater is bound to Data the best way is to iterate through the bound collection (BindingList, etc.) instead.

Best regards
Frank

PS: If you populating the data manually you could also just use a *LayoutPanel and fill it with single panels.
Then you can simply iterate through *LayoutPanel.Controls.

  • Frank (ITG) answered Aug 1, 2021 - 1:27 pm
  • last active Aug 1, 2021 - 1:29 pm
0 votes

You can reduce parallel renderers as a temporary workaround and how many instances of Visual Studio did you start when using “Recycle All”?

Kevin (ITG)

  • Kevin answered Jul 29, 2021 - 7:32 pm
0 votes

Hi Kizamon,

Thank you for reporting this issue we are working on it.
Best ,
Kevin (ITG)

  • Kevin answered Jul 29, 2021 - 6:13 pm
0 votes

Hi Hadrian,

can you please provide us with a test case that helps us to reproduce that error?

Thanks in advance.

Best regards
Frank

0 votes

Hi,

you use the CurrentItemIndex or CurrentItem property for that.

Best regards
Frank

0 votes

Sorry for piggy-backing on this discussion.

The Toolbox shows both Wisej2 and Wisej2.5 sections.

I have fully uninstalled and re-installed the addon “Wisej-2.5.3.exe” and also have deleted the ToolboxCaches, the ComponentModelCache, and the toolbox*.tbd files.

The existence of Wisej2 tab does not cause any immediate problem, I’m using the components from Wisej2.5 tab only.

 

0 votes
In reply to: Identify the Client

Hi Rupert

The value of Fingerprint change when the app is opened from different browsers.

If the users has more than one browsers installed on their computers, even if they are into the lan, they will get a different fingerprint

If the above is for your scenario. A suggestion is to standarized the browser used to access your app

Regards

  • Paul answered Jul 27, 2021 - 5:17 pm
0 votes
In reply to: DEVEXPRESS Controls

Hi Nikos

Yes, its possible

You should be able wrap any ASP.NET webforms control using the AspNetPanel control.

There’s a sample here: https://wisej.com/support/question/usinng-dvevexpress-richedit-for-asp-net

But devex aspnet controls, those are webforms controls that need to run in an iframe. In general it’s always better to use javascript widgets.

Regards and happy coding

  • Paul answered Jul 27, 2021 - 2:55 pm
  • last active Jul 27, 2021 - 2:59 pm
0 votes

Nikos,

SummaryRows only work on unbound DataGridViews.
You can however use the methods Fill or Append to fill the DataGridView and then fully benefit from the SummaryRows.

Best regards
Frank

0 votes
In reply to: RadioButton Group

Hi Alaa,

 

please see the picture attached for sample demonstration.

 

I have added 6 radio buttons in one container.

 

Color: ( ) Red ( ) Green ( ) Blue

Size: ( ) Small ( ) Medium ( ) Big

 

Because the 6 radio buttons are located insde one container (e.g. Group Box), I can only select one radio button at a time out of six.

I cannot select combination of one Size and one Color.

In order to do so, I need to create sub-containers (panels or grou boxes) for each radio button group.

 

There could be an easier way to do so.

For example the pure HTML input type=radio has the name attribute, which allows easy grouping of the radiobuttons.

 

<input type=”radio” id=”id1″ name=”color” value=”Red”>

<input type=”radio” id=”id2″ name=”color” value=”Green”>

<input type=”radio” id=”id3″ name=”size” value=”Small”>

<input type=”radio” id=”id4″ name=”size” value=”Big”>

 

The WiseJ RadioButton control can get a handy property GroupName, which will be used for iteration in order to find the next radiobutton in the group.

Hopefully this helps.

0 votes
In reply to: RadioButton Group

Hi Kizameon,

Can you please give us more details on what you’re trying to achieve ?

Thank you,
Alaa

0 votes

Thank you for the answer !!

I have another question

If the Datagrid is binding with a dataset it is possible to add a summary row?

Do we have issues when the user sorts the columns !!!

I will suggest having a footer on the datagridview like as the header, and there calculate the sums?

Best Regards

  • Nikos Tzilivakis answered Jul 24, 2021 - 8:42 am
  • last active Jul 24, 2021 - 9:28 am
0 votes

Hi Tom,

We have a better answer to your question, just do this :

dataGridView1.EditingControlShowing += DataGridView1_EditingControlShowing;
private void DataGridView1_EditingControlShowing(object sender, DataGridViewEditingControlShowingEventArgs e)
{
if(e.Control is ComboBox)
{
((ComboBox)e.Control).SelectedItemChanged -= Window1_SelectedItemChanged1;
((ComboBox)e.Control).SelectedItemChanged += Window1_SelectedItemChanged1;
}
}

Best,

Kevin (ITG)

  • Kevin answered Jul 23, 2021 - 5:24 pm
0 votes

Hi Nikos,

We have a sample that might suit your needs.

You can get it from here: wisej-examples/DataGridViewSummaryRows at 2.2 · iceteagroup/wisej-examples (github.com)

This sample is actually tailored to be used with Wisej 2.2, and with version 2.5 we have included the SummaryRows feature without the need for an extention but everything remains the same!

HTH,
Alaa

 

0 votes

Hi Tom,

You can use datagridviewComboBoxColumn.Editor for your event like this


Column2.Editor = new ComboBox();
((ComboBox)datagridviewComboBoxColumn.Editor).SelectedValueChanged += Window1_SelectedItemChanged;

and it work well.

But we have identified an issue when using the DropDownStyle = “Simple” in the Column Editor with a custom editor and we’ll try to get it fixed for the next build

Best,

Kevin (ITG)

  • Kevin answered Jul 22, 2021 - 9:06 pm
0 votes

Hi Edmond,

If you want to change version, just go to Windows control panel > applications and features and uninstall Wisej then go to https://wisej.com/builds/ and choose one version and install it.

Best,

Kevin (ITG)

  • Kevin answered Jul 21, 2021 - 9:43 pm
0 votes

It works, That is perfect,

With this solution, I will solve other issues in the future

Thank you a lot.

 

0 votes

Hi Nikos

The DateTimePicker and NumericUpDown controls hide the Padding property, but you can set it in the InitScript property of the control

with one line: this.setPadding(8);

Here a samples images for this

Regards

 

  • Paul answered Jul 21, 2021 - 3:59 am
0 votes

Claudio

Currently we don’t have any updated about this topic

Regards

  • Paul answered Jul 21, 2021 - 3:05 am
Showing 3461 - 3480 of 11k results