Hi,
I am using a RadGridView to display user values related to each others in multiple ways.
I wish to periodically scan all cells to check the values and then flag them with a red or green cell border.
I keep all the cells status in a Dictionary<point, status> with point being the cell coordinates.
However, Idon't find a way to have all cells with a reference in the dictionary permanently showing the right border depending on its status.
I am using the cell_formatting event, but the border color disappear when cell is not current.
Here is some sample code
private void gvLignesFacture_CellFormatting(object sender, CellFormattingEventArgs e)
{
// On décore la cellule selon son status
Point cellCoordinates = new(e.CellElement.RowIndex, e.CellElement.ColumnIndex);
if (DictOfGvCellStatusByCoordinates.TryGetValue(cellCoordinates, out var lookStatus))
{
switch (lookStatus)
{
case CtrlLook.Default:
e.CellElement.Font = GlobalVars.smallRegularFont;
e.CellElement.BorderColor = Color.Black;
break;
case CtrlLook.Valid:
e.CellElement.Font = GlobalVars.smallBoldFont;
e.CellElement.BorderColor = Color.Green;
break;
case CtrlLook.Incorrect:
e.CellElement.Font = GlobalVars.smallRegularFont;
e.CellElement.BorderColor = Color.Red;
break;
}
}
}
How to do this right ?
Many thanks for your answer
Patrick
First, thanks for the awesome stuff, getting it going was easy.
However, I'm having a few issues and can't seem to figure out a way around them. I'm trying to make a JSON tagger.
Here is how I'm defining things:
Private Shared ReadOnly Keywords As String() = New String() {""""}
Private Shared ReadOnly Operators As String() = New String() {"{", "}", "[", "]", ":", ","}
Here is an example of the output
The problems I see are:
The second double quote isn't colored like the first one.
The colon isn't colored
The comma after the double quote isn't colored
The closing brace and comma aren't colored
Also, is there a way to highlight the text between characters? I'd like to highlight the keys and values, and differently from each other if possible.
I'm sure I'm doing it wrong, but haven't been able to figure it out.
Thanks!
I'm trying to insert text at the start of a line in the radSyntaxEditor.
I haven't found a way to do it, and was attempting to use the following code
Dim cp As CaretPosition = editor.SyntaxEditorElement.CaretPosition
cp.MoveToLineStart()
However, this doesn't appear to move to the start of the current line.
Ultimately, I'd rather not actually move the cursor, I'd like to insert without doing that. Is that possible?
Hello,
I've been trying to enable drag and drop functionality so that the user can sort the RadNavigationView menu items, and it works when the ItemDragMode property is set to Preview, but does nothing when it's set to Immediate, then there's no drag and drop at all, the functionality seems to be disabled.
c.ViewElement.ItemDragMode = PageViewItemDragMode.Immediate
I'm not sure if I'm doing something wrong, or if this is the intended behaviour (so the immediate mode it's not a supported feature), or if it's just a bug.
Thanks
Hi Telerik support team,
I’m strugling with the Winforms GridView GroupComparer and need some help with it. I’ve seen the topic below:
https://docs.telerik.com/devtools/winforms/controls/gridview/grouping/sorting-group-rows
In my case I’ve a generic comparer in which I want to evaluate which column needs some sorting changes. These are my unitColumns and I have a reference to its list at the moment I create the comparer.
this.radGridView1.MasterTemplate.GroupComparer = new CustomGroupComparer(list);
The problem I walk into is that Telerik creates new CustomGroupComparers by itself (I think for every group?). It also demands an empty constructor. This way I have no option to get to the list that I need.
Is there a workaround for this problem?? For this moment I defined a hardcoded List inside the customComparer but that’s not the way to program it.
It would be nice if the custom comparer was part of the GroupDescriptor.
Regards,
Daniel
I'm trying to unregister a tagger for an radSyntaxEditor. I've applied a tagger previously and want to change it. So far, it appears that I'd have to save which tagger was used prior, and then unregister it that way?
Meaning, there's no way (that I could find) to get a list of applied taggers. All of the methods assume you already know what is applied.
I guess you could create an object of each type of tagger and then check for every possible tagger and then remove it, but...
Basically, what I was expecting was either a way to get a collection of the applied taggers, or be able to call the UnRegisterTaggers without parameters to remove them all, etc.
Any help would be great!
According to this page: https://docs.telerik.com/devtools/winforms/controls/menus/contextmenu/context-menus
I should be able to assign a radcontextmenu to the contextmenu of the radsyntaxeditor. However, I'm finding that not to be the case as you can see below. my contextmenu named ctxMenuEditor is of type radContextMenu.
The below screenshots should show the problem I think. Basically, for whatever reason, the radsyntaxeditor doesn't accept the radcontextmenu, just contextmenu object type.
Hi:
I have a Winforms application that I recently update the Telerik controls to 2023.1.117.40.
I am now unable to build as I am getting the following error:
'Could not load file or assembly 'Telerik.WinControls.Themes.Crystal, Version=2023.1.117.40, Culture=neutral, PublicKeyToken=bf4391287131aaeb' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)'
Am I missing a required Telerik library in my references?
Here are the libraries I am currently referencing:
There seems to be an extra row created, w/ no data after the last row of data is added to the CSV. Not sure what is happening or if there is a setting to not include the last empty row. Just so we are clear, I have a grid with 10 rows in it, but when I look at the csv that is generated from the grid, I have 11 rows.