4 Answers, 1 is accepted
0

Shinu
Top achievements
Rank 2
answered on 27 Nov 2008, 06:16 AM
Hi Andy,
You can put the Radgrid in always insert mode by using the following code and position the insert from to the bottom of the grid .
Thanks,
Shinu.
You can put the Radgrid in always insert mode by using the following code and position the insert from to the bottom of the grid .
protected void RadGrid1_PreRender(object sender, EventArgs e) |
{ |
RadGrid1.MasterTableView.IsItemInserted = true; |
RadGrid1.MasterTableView.Rebind(); |
} |
Thanks,
Shinu.
0
Hello Andy,
You can control the display position of the insert form using the InsertItemDisplay property of GridTableView.
Customize the insertion form display position with paging enabled
CommandItem demo
Kind regards,
Daniel
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.
You can control the display position of the insert form using the InsertItemDisplay property of GridTableView.
Customize the insertion form display position with paging enabled
CommandItem demo
Kind regards,
Daniel
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0

Andy
Top achievements
Rank 1
answered on 01 Dec 2008, 03:23 PM
Let me explain a bit further...
the grid is a list of inventory items, one of the fields of that grid is a entry field allowing the user to put in the amount or count of items that they wish to purchase....
so.
Item Code Item Desc Qty Avail order Qty
123455 Widgit 23 ENTRY AREA
so the user would in the ENTRY AREA put in how many he wishes to purchase, and on the completion, I will grab that and put in a seperate table as an order.
the editable field, would more likely be EDIT mode not INSERT...
Andy Stapleton
0
Hello Andy,
Thank you for the clarification
Depending on your scenario you can either put all items in edit mode (as shown on the link) or open edit mode on button/row click.
Default edit mode for grid items on initial load
Please let me know if I missed something.
Best regards,
Daniel
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.
Thank you for the clarification
Depending on your scenario you can either put all items in edit mode (as shown on the link) or open edit mode on button/row click.
Default edit mode for grid items on initial load
Please let me know if I missed something.
Best regards,
Daniel
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.