実装する機能があります:
PurchTable フォームでは、purchTable.purchstatus フィールドのように列挙型を使用するフォームの上にコンボックスを作成するように指示されます。
コンボボックスで上記の要素のいずれかをクリックすると、下のグリッドでそのデータのみを取得する必要があります。つまり、請求済みをクリックすると、購入ステータスが「請求済み」のレコードが表示されます。
このために、コンボボックスを作成し、selectionchange() のオーバーライドされたメソッド「selectionchange」コードを使用しました。
public int selectionChange()
{
int ret;
ret = super();
if(combobox.selection()==status::invoiced)
{
... what will i have to write here to add range"invoiced" in the datasource
}
if(combobox.selection()==status::All)
{
. .. what will i have to write here to add range"invoiced" in the datasource
}
}