Product Bundles
DevCraft
All Telerik .NET and Kendo UI JavaScript components and AI Tools in one package.
Kendo UI
Bundle of AI Tools plus four JavaScript UI libraries built natively for jQuery, Angular, React and Vue.
Build JavaScript UI
Javascript
Telerik
Build modern .NET business apps
.Net Web
Cross-Platform
Desktop
Reporting and Documents
AI for Developers & IT
Ensure AI program success
AI Coding
AI Engineering
Additional Tools
Enhance the developer and designer experience
Testing & Mocking
Debugging
AI-Enhanced UI Tools
CMS
Free Tools
Support and Learning
Productivity and Design Tools
I need to add different type of cells (NumericUpDown,TextBox,Combobox) to same column in RadDataGrid. Could someone please help its very urgent.......
Thanks.
Kinda late, but if anyone strumbles here:
You can place a NumericUpDown (or any other control) inside a GridViewDataColumn kinda like this.
01.
<telerik:GridViewDataColumn Header=
"Header Title"
DataMemberBinding=
"{Binding Value, Mode=TwoWay}"
TextAlignment=
"Right"
>
02.
<telerik:GridViewDataColumn.CellTemplate>
03.
<DataTemplate>
04.
<TextBlock Text=
"{Binding Value}"
/>
05.
</DataTemplate>
06.
</telerik:GridViewDataColumn.CellTemplate>
07.
<telerik:GridViewDataColumn.CellEditTemplate>
08.
09.
<telerik:RadNumericUpDown Value=
10.
11.
</telerik:GridViewDataColumn.CellEditTemplate>
12.
</telerik:GridViewDataColumn>