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
Productivity and Design Tools
hello, I set the event title in jquery dynamically depending on selected value in 3 comboboxes and when I try to save the event in database, the title's value is 'No title'.
It's working when I write something manuelly. Do you know why I have this issue ?
Thank you,
Found by myself.
Using OnSave event and "e.event.set()"
function
scheduler_save(e) {
var
_fournisseur = $(
'#FournisseurCBB'
).val();
if
(!checkFournisseur(_fournisseur, e.event)) {
e.preventDefault();
}
_title = $(
'#txtTitre'
e.event.set(
"title"
, _title);