Ext.Net1.0 を使用しています。そして、私はコンボボックスで作業しています..値がすでに使用されている場合、何らかの計算によってコンボボックスから値を選択しているときに、エラーメッセージを動的に表示したいのですが、どうすればメッセージを表示できますか..??
<ext:ComboBox ID="cmbClient" runat="server" Width="200"
FieldLabel="Client Name"
DisplayField="client_firstName" ValueField="clientId"
AllowBlank="false" BlankText="Select Client"
MsgTarget="Title" EmptyText="Select Client">
<Store>
<ext:Store runat="server" ID="clientStore">
<Reader>
<ext:JsonReader IDProperty="clientId">
<Fields>
<ext:RecordField Name="clientId" />
<ext:RecordField Name="client_firstName"/>
</Fields>
</ext:JsonReader>
</Reader>
<SortInfo Field="client_firstName" Direction="ASC" />
</ext:Store>
</Store>
<DirectEvents>
<Select OnEvent="cmbClient_Change"></Select>
</DirectEvents>
</ext:ComboBox>
cs ページ コード
protected void cmbClient_Change(object sender, DirectEventArgs e)
{
int c = objapp.Count_SelectClient();
if (c != 0)
{
statusbar.Show();
this.statusbar.Text = cmbClient.SelectedItem.Text + " already having appoinment at selected time.";
this.statusbar.Icon = Icon.Exclamation;
}
}
ここでは、ステータスバーにエラーメッセージを表示する代わりに、コンボボックスにエラーメッセージを表示したい..どうすればいいですか??