0

I would like to have a form when editing a GridView such as RadControls o DevExpress controls instead of In-Row edit mode, is that possible?

Framework 4 C#

marc_s
  • 732,580
  • 175
  • 1,330
  • 1,459
Jamo
  • 494
  • 5
  • 24
  • Sure - have you tried it? Where are you stuck? Or are you expecting some magic form that pops up letting you edit the fields? – D Stanley Sep 02 '15 at 13:13
  • I just want to know if it is possible because I have seen examples they just use in-row edit mode, it seems that is the only way. – Jamo Sep 02 '15 at 13:18

1 Answers1

0

With the DevExpress XtraGrid, you can use their EditForm feature. Just have a look at the DevExpress Documentation.

PS: you can even customize the form.

Waescher
  • 5,361
  • 3
  • 34
  • 51
  • Thanks but it is not possible to use DevExpress in this project where I working on – Jamo Sep 08 '15 at 15:49
  • Ah, okay. So you have to use the .NET DataGridView? This control does not have a feature like that. So unfortunately you'd have to create a edit form by yourself. – Waescher Sep 09 '15 at 06:31
  • Yeah sadly I have to. Thank you. – Jamo Sep 09 '15 at 13:29
  • Not that I am a fan of this, but did you have a look at this: http://www.codeproject.com/Articles/19735/DataGridView-with-Detail-Edit-Form-VS – Waescher Sep 09 '15 at 13:32
  • It would be fine but this is for Windows Forms. – Jamo Sep 09 '15 at 17:23