문제

I need multiple selection of rows in a grid. I have done 1 with the selection command column, now I have inserted another check column, can anyone tell me how to make that column editable without using edit button? I am using DevExpress ASPxGridView Control.

도움이 되었습니까?

해결책

If I understand correctly you can add a ItemTemplate under Columns like this

<asp:TemplateField HeaderText="fieldname">
      <ItemTemplate>
            <asp:CheckBox ID="CheckBox1" runat="server" />
       </ItemTemplate>
</asp:TemplateField>

다른 팁

 <ItemTemplate>
         <asp:CheckBox Text="text" Checked="false" AutoPostBack="true" runat="server" />
 </ItemTemplate>
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top