0

送信ボタンを押す直前に編集フォームでコントロールを検索しようとしています(カスタム)が、値を入力してもメモに入力された値が返されません。リセットするようです。それは何にも拘束されません。

コード:

Dim Memo As ASPxMemo =   CType(ASPxGridView_BranchQueue.FindEditFormTemplateControl("ASPxMemo_ResubmissionRationale"), ASPxMemo)

    MsgBox(Memo.Text.ToString())
4

1 に答える 1

2

AspxGridView の HTMLEDITor の Devexpress の例を次に示しますが、同じです。 http://www.devexpress.com/Support/Center/CodeCentral/ViewExample.aspx?exampleId=E296

aspx ファイルのどこにメモを指定しますか。FindEditFormTemplateControl メソッドは、探しているコントロールが<EditForm>AspxGridView のタグにある場合に使用されます。

例えば:

 <dxwgv:ASPxGridView ID="ASPxGridView1" runat="server" KeyFieldName="ID">
        <Templates>
            <EditForm>
                <dx:ASPxMemo ID="ASPxMemo1" runat="server" Height="71px" Width="170px">
                            </dx:ASPxMemo>
            </EditForm>
        </Templates>

于 2010-07-15T11:00:48.553 に答える