public enum CandidateStatus : int {
None = 0,
Invalid = 1,
[Microsoft.SharePoint.Linq.ChoiceAttribute(Value="Pending Approval")]
PendingApproval = 2,
[Microsoft.SharePoint.Linq.ChoiceAttribute(Value="Open")]
Open = 4,
[Microsoft.SharePoint.Linq.ChoiceAttribute(Value="Screening")]
Screening = 8,
[Microsoft.SharePoint.Linq.ChoiceAttribute(Value="Interviewing")]
Interviewing = 16,
[Microsoft.SharePoint.Linq.ChoiceAttribute(Value="Offers Issued")]
OffersIssued = 32,
[Microsoft.SharePoint.Linq.ChoiceAttribute(Value="Hired")]
Hired = 64,
[Microsoft.SharePoint.Linq.ChoiceAttribute(Value="Cancelled")]
Cancelled = 128,
}
これは、linq.cs ファイルの列挙型コードです。
ここで CandidateStatus は、Sharepoint リストで定義されている選択列です。この「CandidateStatus」の選択フィールドをドロップダウン リストにバインドするにはどうすればよいですか? また、この選択したドロップダウン値を SharePoint リストに挿入するにはどうすればよいですか? 誰でもこれについて助けてもらえますか......