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
0
votes
1 answer

How to make a specific cell in Janus GridEx to be not editable

In my VB.net application I have a Janus GridEx (v.3). By default, each cell of each row is editable. But in certain conditions, I want a specific cell to be set to ReadOnly (or someting that unset the edit mode for this cell) during RowLoadEvent. I…
KBell
  • 502
  • 8
  • 23
0
votes
2 answers

Janus Gridex Exporter to excel

I'm using Janus gridex and Janus gridex exporter. I have one problem when I wanna export it to excel. actually below is my code Dim filep = "" Dim saveDialog As New SaveFileDialog saveDialog.DefaultExt = "xls" saveDialog.Filter = "Excel…
Uy Suy
  • 11
  • 6
0
votes
1 answer

gridEX row selection change on buttonclick not visible

I'm having a gridEX component and up/down buttons for changing the selected row accordingly. If I select a certain row from the table, the up button should select the row above the previously selected row. private void btnUp_Click(object sender,…
e.l.g.o.
  • 55
  • 1
  • 6
0
votes
1 answer

How to wrap header caption in Janus GridEx

I'm using Janus controls in my Windows Application (NOT WPF) with .NET 2.0. In all of the grids in my application, I want to wrap the caption of column header. I tried many codes and searched for it for a long time. But no used. Would anyone help me…
Mohammad Mirmostafa
  • 1,720
  • 2
  • 16
  • 32
0
votes
4 answers

Adding filter in Janus Gridex

I am using a Janus GridEX with multiple columns. I want to apply filter in gridex data based upon input value for a particular column in GridEX . I am trying to add an extra row at the top where i can input filter condition in a textbox for a…
0
votes
1 answer

Janus GridEX SelfReferencing Setting

I want to Load my tree as Hirarchical in Janus GridEX , but when I set the setting it is not working , my table columns are: TopicID nvarchar(50) ; --which is parent ParentID nvarchar(50) ;--which is child Description nvarchar(50); and the setting…
franchesco totti
  • 582
  • 1
  • 7
  • 28
0
votes
0 answers

Janus GridEX BackSpace doesn't raise InitCustomEdit

I have to use a text box as a custom control editor for FilterRow of a Janus GridEX so that I can handle its TextChanged event and do some asynchronous stuff while maintaining the focus on the current cell. Here's the code…
Beatles1692
  • 5,214
  • 34
  • 65
0
votes
1 answer

Getting all of the data inside GridEX

what I'm trying to do is export the selected rows to Excel. But if I use the SelectedItems property it gives me a collection of the selected rows but in the order that they were selected. I don't want this. I want to get a collection of the selected…
Dror Cohen
  • 125
  • 7
0
votes
2 answers

How to add a check box column in Janus gridEX

I have a Janus GridEX that loaded from DataTable in SQL database, It have 8 column in my Grid. Now I want to add check box column list and ability to select multiple rows. I'll be appreciate if some one help!
M Badkoobeh
  • 1
  • 1
  • 2
0
votes
0 answers

FilterRow is not populated in Janus.GridEx

I am working on a manual filtering solution for Janus.GridEx. gridEX1.FilterMode = FilterMode.Manual; We need to query our database everytime that filter changes and we need to do that everytime user types something in filter row so we have…
Beatles1692
  • 5,214
  • 34
  • 65
0
votes
1 answer

Gridex filter readonly

the short version: Is there a way to set a column readonly without setting the filter cell readonly? the long version I use a janus GridEx control to display a key with several values next to it (its for a localisation tool, the key is the English…
Nick Otten
  • 702
  • 7
  • 17
0
votes
2 answers

Janus GridEX crashes when i drag a grouping column out of Janus Control

I have a Janus Grid with a bunch of columns. I currently have group by functionality that lets me group my grid based on any column just by dragging the column to the top. Say I group by the column "Country". Now i remove the column "Country" from…
hunterr986
  • 43
  • 1
  • 10
0
votes
1 answer

Accessing ComInterface to VB6 OCX Control with win32 handle in c#

I’m at the moment automating the test for a legacy application developed in vb6, which uses a GridEx2000b Control from Janus Systems. For doing this I’m using Ranorex as my favorite tool for developing the test automation, so that I can develop the…
0
votes
2 answers

How can i change the edit mode of a cell in my Gridex Janus Table

I'm trying to create a Janus gridex which every cell has different edit mode. For instance, one cell will be comboBox edit mode and the second one will be free text How can it be done? Thanks in advance, Oz.
Oz Radiano
  • 779
  • 2
  • 11
  • 30
0
votes
2 answers

Cannot select specific row on Janus GridEX

So I'm accessing a DB through a stored procedure and am able to pull the data I wanted into a popup box. The problem now is that no matter what row I click on, the SAME data keeps populating my fields. How the heck can I choose a particular row, and…
Gmac
  • 169
  • 2
  • 14