Hello,
I have the following problem.
I have a Radgrid with cells default value=0
When i edit these cells for example i put the number 3 in the cell and click on save button
I get always "0" when i read the cell value instead of the Value 3 which i entered.
This is my code:
telerik:RadGrid ID="GridVK" runat="server" Culture="de-DE" AutoGenerateColumns="False" MasterTableView-EditMode="InPlace"><GroupingSettings CollapseAllTooltip="Collapse all groups"></GroupingSettings> <ClientSettings> <ClientEvents OnBatchEditClosed="batchEditClosed" /> </ClientSettings> <MasterTableView EditMode="Batch" > <BatchEditingSettings OpenEditingEvent="MouseUp" EditType="Cell" /> <RowIndicatorColumn Visible="False"> </RowIndicatorColumn> <ExpandCollapseColumn Created="True"> </ExpandCollapseColumn> <Columns> <telerik:GridBoundColumn DataField="name" FilterControlAltText="Filter column1 column" HeaderText="Name" UniqueName="ColName"> </telerik:GridBoundColumn> <telerik:GridNumericColumn DataField="Sells" DecimalDigits="2" FilterControlAltText="Filter column column" HeaderText="Sells" UniqueName="ColSells" EmptyDataText="0"> </telerik:GridNumericColumn> </Columns> </MasterTableView> </telerik:RadGrid>
in VB:
For Each item As GridDataItem In GridVK.Items vk = New Selldata vk.vkname = item("colname").Text vk.solljanuar = item("ColSells").Text next
Why did i get always "0" instead the value i entered?
Sorry for my english.
Regards
Manuel