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
UI/UX Tools
CMS
Free Tools
Support and Learning
Docs & Resources
Productivity and Design Tools
Hi Ryan,
My answer assumes that you are using inline Grid edit mode. You can set the Save command button text at runtime, depending on which Grid event fired - OnAdd or OnEdit.
<TelerikGrid OnAdd="@OnGridAdd" OnEdit="@OnGridEdit"> <GridColumns> <GridCommandColumn> <GridCommandButton Command="Save" ShowInEdit="true">@SaveButtonText</GridCommandButton> </GridCommandColumn> </GridColumns> </TelerikGrid> @code { private string SaveButtonText { get; set; } = "Save"; // practically never used private void OnGridAdd(GridCommandEventArgs args) { SaveButtonText = "Add"; } private void OnGridEdit(GridCommandEventArgs args) { SaveButtonText = "Update"; } }
Regards, Dimo Progress Telerik
Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.