私はJavaで書かれたこのような列挙型を持っています:
public enum Status
{
ACTIVE("Active"), IN_ACTIVE("InActive");
Status(String desc)
{
this.description = desc;
}
private String description;
public String getDescription()
{
return description;
}
public void setDescription(String desc)
{
this.description = desc;
}
}
この列挙型はjqGridのプロパティです。ただし、常に列挙型、つまりACTIVEまたはIN_ACTIVEを表示します。jqgridにアクティブと非アクティブを表示させたい。ありがとう