Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
615
iGrid enumeration problem
posted

When assigning a view model that has enumeration properties of type ColorEnum to an igGrid, I get this error:

No applicable method 'toLower' exists in type 'ColorEnum'.

ColorEnum is:

[DataContract]

public enum ColorEnum

{

[EnumMember]

Yellow,

[EnumMember]

Green,

[EnumMember]

Red

}

How to use enumeration properties in models assigned to an igGrid datasource? I have the same problem with byte data type.

By the way, I reuse my business objects in my MVC 4 project by referencing the same assembly that is used in the WCF service instead of using a proxy as usually in Visual Studio 2013.

Parents Reply Children