Questions tagged [gridex]

GridEX is a commercial grid control for .NET developed by Janus Systems. It offers advanced editing, sorting, filtering, grouping, and formatting features that may appeal to users seeking an alternative to .NET's standard DataGrid and DataGridView controls.

69 questions
4
votes
2 answers

Janus GridEX: Cannot get the newly edited value on CellValueUpdated event

How to get the currently edited value when handling the: public class GridEX // ... { // ... public event ColumnActionEventHandler CellValueChanged; // ... }; Trying to obtain the value using: GridEXCell valueChangedCell =…
TodorBalabanski
  • 109
  • 2
  • 10
4
votes
1 answer

select multiple rows on Janus GridEX

I want to select multiple rows on Janus GridEX, but selectedItems property cannot be assigned and it's read only. however I can select a specific row by GridEX.Row and set the current selected row, but I cant add a row or any thing like that to…
Shahin
  • 302
  • 2
  • 10
3
votes
2 answers

Janus GridEx: Add custom row and select a specific row

I have GridEx object on my form and... I want to add some items in it with a for...next loop. Actually I couldn't find any method for adding a new row with a custom data. I want to select a specific row in that GridEx object. For example: I want to…
Hossain Alhaidari
  • 767
  • 3
  • 11
  • 24
3
votes
2 answers

How to make a Janus GridEx column readonly?

I'm working on a windows forms app and there is a Janus GridEx component with 3 columns. I don't want users to change the values in the first two columns but I can't find the way to make readonly or allowedit false for the first two columns and…
David Aleu
  • 3,922
  • 3
  • 27
  • 48
2
votes
1 answer

Janus GridEx for ASP.NET Designer Support

I've been working with Janus GridEx for Web for a few days. I'm afraid I'm unable to open the GridEx designer (Grid context menu in ASP.NET designer), which makes real work fairly impossible or at least unproductive. I get the following error…
Matthias Meid
  • 12,455
  • 7
  • 45
  • 79
2
votes
0 answers

Janusys.com or Janusus.net Website and Forum

is there anybody who preserved the old Website of the Janusys company. Mostly known for their GridEX Winforms control but they had a complete suite of Winform Tools. Their support was (up until 'bankruptcy') very good and gave much more info on how…
Sandor
  • 33
  • 4
2
votes
1 answer

Get values from selected row in a GridEx

I have a Gridex with one column as a link column. When a user clicks a link the event triggered should then store several values from the selected row in several different variables. I suppose the values could also be stored in the same variable if…
Edward G-Jones
  • 575
  • 3
  • 11
  • 24
2
votes
1 answer

Copy text from row in GridEX

Using Janus GridEx control, Visual C#. I have a timer that updates the grid every 3 min through a stored function on the DB. How can I double click a specific row and have it show within a multiple line textbox with the text of the 4 cells in the…
Gmac
  • 169
  • 2
  • 14
2
votes
1 answer

Change row height in gridex janus

how to change row height of a gridex in janus when the gridex is binded to a root table? as you can see there is no property on gridex for setting row size.
fasadat
  • 1,025
  • 1
  • 12
  • 27
2
votes
2 answers

How do I get the total rows per group with the Janus GridEx for WinForms?

I am using the Janus GridEx (Windows Forms) and would like to export the contents to Excel. We have used the export functionality that Janus has built in before, but especially with hierarchical grids the exported file looks unprofessional. So now…
Veldmuis
  • 4,678
  • 4
  • 25
  • 25
1
vote
1 answer

select row in GridEx in runTime

I am using the Janus GridEx control. I am using a timer to update the grid with data from the database every minute. If the user has a row selected when the data is updated from the database, how can I re-select the row after the update is complete?
Pouya
  • 1,908
  • 17
  • 56
  • 78
1
vote
1 answer

Janus Gridex Sorting not working as expected for DateTime coulmn

We are using Janus GridEX v4 in our C# applications. To sort the columns on the column click, ColumnHeaderClick() method gets triggered and sorting is done in the below way if (Order == Janus.Windows.GridEX.SortOrder.Ascending) {…
Chethana
  • 19
  • 1
1
vote
1 answer

WinForm having Janus Gridex hangs /freezes when Enter key is pressed

I have a windows form with Gridex Control which hangs when the 'Enter' key is pressed when editing a row. The 'Enter' key triggers 'EndCustomEdit' event and the win forms freezes. Is there a way I can disable the triggering of 'EndCustomEdit' event…
1
vote
0 answers

How to avoid "cell formatting" of GridEX from being overridden by "selected row formatting"?

I use Janus 3.5 with C#. I have a grid (GridEX) and implemented the "FormattingRow event" to change the background color of certains cells by setting their "GridEXCell.FormatStyle". This works fine. However, as soon as a row of my grid is selected,…
1
vote
1 answer

Janus GridEx: custom user control in cell

I'm using janus data grid GridEx and I need to create custom cell: I defined data source as array of custom class: public interface ILinkPresentationView { string LinkText { get; set; } ICommand LinkCommand { get; set; } string…
Mr.B
  • 3,484
  • 2
  • 26
  • 40
1
2 3 4 5