Hi.
I need to set a dxDataGrid column as “fixed” on the left and for such I need to set the “columns” Option for such.
Here is the code:
this.dxDataGrid1.Options.columns = new object[]
{
new
{
datafield = "myField",
fixed = false,
caption = "Test"
}
};
The problem is with the “fixed” property, apparently it is being confused with the Wisej.Panel.FixedPanel enum and it won’t let me add this line.
Any workaround for this one?
Thanks in advance.
Ivan
(Wisej 2.2.46.0, VS 2019, C#)
There is no confusion with an enumeration. The JSON is simply a dynamic object.
Oh, well… then I don’t know.
I have attached the images from VS.
Please login first to submit.