Telerik Forums
Kendo UI for jQuery Forum
1 answer
144 views

Hi,

I found RadChart has been discontinued as of Q3 2014, so can I build a chart like RadChart with kendo Chart? 

Thanks,

An

Nikolay
Telerik team
 answered on 04 Oct 2021
2 answers
338 views
I have a horizontal kendo menu (6 items across) with varying sizes of dropdowns (submenus) associated with each item. My question is how do I control the appearance of the scrollbar on those items? They're all created in a similar fashion, but a couple will display only 1 item with a scrollbar for the rest of the items, and the others will display the full list in its entirety. I'm not certain what to look for in the code that would trigger such a behavior, or if I can override in the css...   
Andrew
Top achievements
Rank 1
Iron
 answered on 01 Oct 2021
1 answer
178 views

Does Kendo support any sort of per-client throttling when it comes to SignalR?

We have a situation where there are 100s of data sources on a page attached to list views. Because these all attempt to read at once we get 414 errors and others and I suspect the easiest fix will be to prevent too many requests from happening at once.

Any ideas? I haven't been able to find a solution at the SignalR layer.

Georgi Denchev
Telerik team
 answered on 01 Oct 2021
0 answers
129 views
I have a kendoGrid and one of columns perform MultiColumnComboBox  when edit. I have handler the event that when press arrow key, the select cell and edited cell will move and navigate. But when move to MultiColumnComboBox field column the event arrow keyup of input also fired. How can i prevent this when popup of  MultiColumnComboBox is closed and fire normally when pop is opened. How can i resolve this?
Phuong
Top achievements
Rank 1
 asked on 01 Oct 2021
0 answers
615 views

Hi team,

A customer which uses Kendo grids has asked us to improve the default string column filter which has two fields and one boolean operand and now they want three fields (with their usual "eq", "contains"...) and two boolean operands ("and" and "or" are fine) in the same column.

I am having a bit of a hard time finding an example that manipulates the same column with three fields because everything I stumble upon uses two or three fields, either in different columns or in a templatized one.

My starting point is this code I found here and adapted to work in my local environment:

ds.filter([
	{"logic":"or",
	 "filters":[
		{
			"field":"Freight",
			"operator":"eq",
			"value":11.61},
		{
			"field":"Freight",
			"operator":"eq",
			"value":51.3}
	 ]},
	{
		"field":"ShipCity",
		"operator":"startswith",
		"value":"Char"}
]);

I have tried to figure out a way to use the third set of properties within the other two, to no avail.

Is there any way to achieve what I am trying to do?

Thank you very much in advance, best wishes.

jalmartinez
Top achievements
Rank 1
 asked on 30 Sep 2021
1 answer
160 views

Hi Team,

Autocomplete textbox should have type=search to comply with the accessibility guideline [1.3.5 identify input purpose], but i do not see any way to do so.

any help is appreciated.

Ianko
Telerik team
 answered on 30 Sep 2021
1 answer
1.8K+ views

I've been searching for a while now and I can't find any resources on this. Enabling or disabling a button initially can be done through the button config: https://docs.telerik.com/kendo-ui/api/javascript/ui/wizard/configuration/steps.buttons.enabled

But there seems to be no documentation on how to programmatically enable or disable these buttons. What's the best way of doing so?

h
Top achievements
Rank 1
Iron
 answered on 30 Sep 2021
1 answer
307 views

Hi Team,

 

Is there a way i can enable the keyboard tab/arrow keys for grid pager, where user can tab and select the page to navigate to, I understand that user can use shortcut keys to do page navigation but we are looking for navigation using arrow or tab keys.

 

thank you

Nikolay
Telerik team
 answered on 30 Sep 2021
1 answer
147 views

I've got a Gantt chart that I've limited the amount of customization, just defined it using two two datasources, a single 'Title' column and some Pdf settings. Whenever I export to Pdf, it's huge width, and all of my tasks are slotted in the first time slot.

I was using R2 2021, so I just updated to R3, v2021.3.914 and I'm still seeing the same behaviour.

I think I'm going a bit nuts since other users seem to be able to export to Pdf no problem. I had a custom JS build including only the components I require, so I wonder if I'm missing a dependency that helps with the time aspect of Pdf? So I tried using kendo.all.min.js and I'm still having some pretty unfortunate PDF exports.

The datasources aside (they seem to be operating fine, all the behaviour and functionality in the Gantt chart seems to be working without error), here is the init of my Gantt.

$("#gantt").kendoGantt({
    dataSource: tasks,
    dependencies: dependencies,
    columns: [
        { field: "title", title: "Title" }
    ],
    pdf: {
        fileName: 'GanttTest.pdf',
        paperSize: 'auto',
        landscape: true
    }
});

I've attached a screenshot of the UI, which is great. The tasks are all working fine in the UI, the dependencies all work. You can see where the times are slotted in the UI.

Then when I export to PDF, you can see the tasks are all incorrectly rendered under the 8AM time slot, and the other time slots are taking up way too much of the PDF making it pretty much useless as an export.

I've also tried playing with paper sizes in the pdf settings, which usually results in cutting off the content, even though the tasks are still all rendered under the 8AM time slot.

Has anyone else seen this behaviour?

Kevin

Neli
Telerik team
 answered on 29 Sep 2021
1 answer
130 views

I am exporting a jquery grid to PDF with saveAsPD(); I am setting pdf on grid initializing to 

pdf : {
multiPage: true,
allPages: false,
landscape: true,
repeatHeaders: true,
scale: 0.5,
creator: "John Snow",
margin: { top: "1cm", right: "1cm", bottom: "1cm", left: "1cm" },
 }

 If I am trying to change pdf options, creator for example, the created pdf has just headers and no data.

kendoGrid.setOptions({pdf: {creator: 'Sansa Stark'}});
kendoGrid.saveAsPDF();

The request to the new data is executed but data are not rendered, no a single row :(.

Can anybody help?

P/S Just in case pdf export handler:

pdfExport: (e) => {
const grid = kendo
.jQuery(this.gridConfigurationTemplate.nativeElement)
.data('kendoGrid');
const removableColumns = [];
grid.columns.forEach((col, index) => {
if (!col.ColumnId) {
removableColumns.push(index);
}
});
if (removableColumns.length) {
removableColumns.forEach((i) => {
grid.hideColumn(i);
});
e.promise.done(() => {
removableColumns.forEach((i) => {
grid.showColumn(i);
});
});
}
},
Neli
Telerik team
 answered on 29 Sep 2021
Narrow your results
Selected tags
Tags
Grid
General Discussions
Charts
Data Source
Scheduler
DropDownList
TreeView
MVVM
Editor
Window
DatePicker
Spreadsheet
Upload
ListView (Mobile)
ComboBox
TabStrip
MultiSelect
AutoComplete
ListView
Menu
Templates
Gantt
Validation
TreeList
Diagram
NumericTextBox
Splitter
PanelBar
Application
Map
Drag and Drop
ToolTip
Calendar
PivotGrid
ScrollView (Mobile)
Toolbar
TabStrip (Mobile)
Slider
Button (Mobile)
Filter
SPA
Drawing API
Drawer (Mobile)
Globalization
LinearGauge
Sortable
ModalView
Hierarchical Data Source
Button
FileManager
MaskedTextBox
View
Form
NavBar
Notification
Switch (Mobile)
SplitView
ListBox
DropDownTree
PDFViewer
Sparkline
ActionSheet
TileLayout
PopOver (Mobile)
TreeMap
ButtonGroup
ColorPicker
Pager
Styling
MultiColumnComboBox
Chat
Dialog
DateRangePicker
Checkbox
Timeline
Drawer
DateInput
ProgressBar
MediaPlayer
ImageEditor
TextBox
OrgChart
Accessibility
Effects
PivotGridV2
ScrollView
Switch
BulletChart
Licensing
QRCode
ResponsivePanel
TextArea
Wizard
CheckBoxGroup
Localization
Barcode
Breadcrumb
Collapsible
MultiViewCalendar
Touch
RadioButton
Stepper
Card
ExpansionPanel
Rating
RadioGroup
Badge
Captcha
Heatmap
AppBar
Loader
Security
TaskBoard
Popover
DockManager
FloatingActionButton
CircularGauge
ColorGradient
ColorPalette
DropDownButton
TimeDurationPicker
ToggleButton
TimePicker
BottomNavigation
Ripple
SkeletonContainer
Avatar
Circular ProgressBar
FlatColorPicker
SplitButton
Signature
Chip
ChipList
VS Code Extension
AIPrompt
PropertyGrid
Sankey
Chart Wizard
OTP Input
SpeechToTextButton
InlineAIPrompt
StockChart
ContextMenu
DateTimePicker
RadialGauge
ArcGauge
AICodingAssistant
+? more
Top users last month
Cynthia
Top achievements
Rank 1
Iron
Toby
Top achievements
Rank 3
Iron
Iron
Iron
Danielle
Top achievements
Rank 1
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
yw
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Cynthia
Top achievements
Rank 1
Iron
Toby
Top achievements
Rank 3
Iron
Iron
Iron
Danielle
Top achievements
Rank 1
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
yw
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?