HI,
I have a radgrid, which has editmode as InPlace.
In the Insertcommand, i am getting the values as :
when i insert the first row, i am getting the value in "strProductNumbervalue". However when i insert the second row, the "strProductNumbervalue" is coming as empty.
How to fix this?
Thanks
I have a radgrid, which has editmode as InPlace.
In the Insertcommand, i am getting the values as :
<
InsertItemTemplate
>
<
telerik:RadTextBox
ID
=
"RadtxtPrdNumber"
runat
=
"server"
Text
=
""
>
</
telerik:RadTextBox
>
</
InsertItemTemplate
>
DataTable purchaseOrder =
this
.PurchaseOrderData;
GridDataInsertItem item = (GridDataInsertItem)e.Item;
RadTextBox txtProductNumber = (RadTextBox)item.FindControl(
"RadtxtPrdNumber"
);
string
strProductNumbervalue = txtProductNumber.Text;
when i insert the first row, i am getting the value in "strProductNumbervalue". However when i insert the second row, the "strProductNumbervalue" is coming as empty.
How to fix this?
Thanks