When following the manual I get an error:
Compiler Error Message: BC30034: Bracketed identifier is missing closing ']'.
When placing the license file in VB format in App_Code.
Marc
My scenario is that i have a RadScheduler as part of my master page so it loads on all pages. This is done so that appointment reminders can popup on any page regardless of what page the user is on. This is working great with the exception of snoozing. Snoozing seems to work as long as the user doesn't change to a different page, or do anything that performs a page postback. When that happens, the page reloads and the snooze info is lost. I see there is a Reminder Snooze event, and in there can see where a Snooze Minutes value is provided. My question is how do i persist this value so that i can get it back into the scheduler after the scheduler data is reloaded. I can't assume that the user is just going to stay on the same page. The snooze value doesn't appear to be part of the actual Reminder text string.
Furthermore this snooze period would have to be converted to an actual time. If the user presses snooze for 5 minutes and i update the database somehow with this information, and then the user changes pages after three minutes, when the appointment is read back in the popup should only snooze for 2 more minutes, not 5.
Thanks for your help!
-Mark
I have web projects that I am trying to update with the new 2025 Q1 assemblies and am getting a build error of the TelerikLicense.vb file.
I followed these instructions:
AJAX
.View key
next to the ProgressĀ® TelerikĀ® UI for ASP.NET AJAX.TelerikLicense.cs
(for VB projects add TelerikLicense.vb
).App_Code
folder.TelerikLicense.vb error BC30034: Bracketed identifier is missing closing ']'.
Any suggestions?Hi Telerik Support,
I am encountering an issue when using the copy & paste feature of the RadEditor, in conjunction with ordered and unordered lists.
The issue occurs when pasting content from a Word document, I am using the clean paste feature (removing all formatting from the Word content) and works great, however, when an ordered or unordered list is then added to any line of the pasted content, it appears at the very beginning of the pasted content. The demo does work as expected but I am worried that some of my other code is impacting the default behavior.
I am using a heavily customized RadEditor embedded in a ASP.Net ASPX form, which I have attached (I do utilize custom dialogs also).
If I am missing any information that is required, please let me know and I will provide.
Thank you!
Afternoon,
I am using a RadGrid with Batch Editing. Under a couple of conditions I want to be able to stop a cell from being edited.
I've followed another example using the OnBatchEditOpening client event:
function onBatchEditOpening(sender, args) {
args.get_tableView().get_dataItems();
var cell = args.get_cell();
var cellValue = cell.innerText;
var columnUniqueName = args.get_columnUniqueName();
var row = args.get_row();
var item = row.control;
var itemIndex = item.get_itemIndex();
if (itemIndex > -1) { // if itemIndex is -1 it means this is a new row
if ((columnUniqueName === "Process_type" && cellValue === "L") ||
(columnUniqueName === "Process_order" && cellValue === "1")) {
args.set_cancel(true);
}
}
It just so happens that when the process type is L and process order is 1 will occur in the same row, so all other rows should remain unaffected.
It works fine - I click in the row with 1 and L, and the process order and process type cells are not editable. However, when I then click on a field in another row I get this error:
This only occurs when I've clicked in the row with the non-editable cells first.
Any ideas on how to clear this?
Kind regards,
Richard
Checking the current demos I noticed you are still using the WebComponentsIcons font for the icons like in RadDock. Where can I find a list of the Icons inside that font along with the codes used for each icon? KendoUI icon fonts listed here (List of Icons in the Telerik and Kendo UI Web Components Icons System | Design System Kit) don't match.
Thank you
Hello Telerik Team,
Our customers are using the Telerik Menu component, but they have noticed that its keyboard functionality does not align with the web accessibility standards outlined in the W3C ARIA Authoring Practices. You can review these guidelines at the following link: https://www.w3.org/WAI/ARIA/apg/patterns/menubar/. The page also includes a demo that showcases the expected keyboard behavior for menus.
Is there a way to address these keyboard accessibility issues? If not, are there any planned updates or changes in upcoming releases that will resolve this?
Thanks in advance,
Judy
<telerik:RadNumericTextBox runat="server" ID="txtFirstYear" RenderMode="Lightweight" MaxLength="4" MaxValue="2030" Visible="true" EmptyMessage="" MinValue="1998" CausesValidation="True" Culture="it-IT" DataType="System.Int32">
<NumberFormat DecimalDigits="0" />
</telerik:RadNumericTextBox>
How to changes the color(background ) of Parent and children in the radGantt(Treelist View)?