Telerik Forums
Kendo UI for jQuery Forum
1 answer
164 views

In chrome mobile browser when a combo is searched and clicked, combo box gets cleared sometimes. In other browsers this issue is not there. 

Step 1 : type 2 or 3 three characters in combo box.

Step 2 : click on desired value

Result : Half of the time, combo box gets cleared. 

Dimitar
Telerik team
 answered on 27 Apr 2021
1 answer
95 views

     Hi,

Im trying to get the Week and Month view to fit on the screen. But when I select the week view I get this weird behavior, the content goes out of the screen (example1.png). 

 

I am trying to make it look like how it looks on the day view (example2.png).

Does anyone have a solution for this? :)

Thanks,
Mark

Martin
Telerik team
 answered on 27 Apr 2021
2 answers
6.0K+ views

@(Html.Kendo().Grid<SomeViewModel>()
 .Name("SomeGrid")
 .Columns(columns =>
 {
        columns.Bound(p => p.Id);
 })
 .Events(e => e.DataBound("onDataBound"))
 .Selectable(selectable => selectable.Enabled(true).Mode(GridSelectionMode.Single).Type(GridSelectionType.Row))
    .Scrollable()
 .Filterable()
    .DataSource(dataSource => dataSource
 .Ajax()
 .Read(...)
 )
 )

 

 When the row is selected, color changes to orange. How do I modify this behavior to not change to any color at all ?

 

JoeThomas
Top achievements
Rank 1
Veteran
 answered on 27 Apr 2021
4 answers
4.5K+ views
How do i set Disable, Readonly and MaxLength for KendoEditor?
I also need Disable and enable for Dropdown controls as well.. I am guessing its the same options as Editor (if available)
Ianko
Telerik team
 answered on 27 Apr 2021
0 answers
119 views
Hi,

Currently I have an editor template set for date fields where it changes out the input based on what operator is selected. We have custom operators such as "Next X Days" and "Last X Days" where I would like the input to be a number field, and then for operators such as "Is Equal To" I would like those to be date fields. I have this working, but the problem is that the value in the input doesn't show up in the expression preview or in the serialized data from the filter. Is it possible to accomplish what I'm trying to accomplish?
Joey
Top achievements
Rank 1
 asked on 26 Apr 2021
1 answer
97 views

I have used KENDO UI two Tabstrips.

Tabstrip One.
Tabstrip Two.

and both tabstrip contains a kendo Grid inside and Grid inside Tabstrip One is fixed column grid (2 fixed column) and 8 scrollable columns.

Issue: The grid inside Tabstrip One will take some 20-30 seconds to load after the page load.
The header of the Grid inside the Tabstrip One breaks, If i navigate to Tabstrip Two before the grid inside the Tabstrip One loading and comes back to Tabstrip One after the grid inside the Tabstrip One finished loading. See the First Image.
However if i click inspect on the Grid header the Grid header comes back to Normal (by self setting the k-grid-header width) See the second Image.

Please let me know if anybody faced similar type of issues.
Thanks in advance

Ivan Danchev
Telerik team
 answered on 26 Apr 2021
2 answers
1.7K+ views

I have a kendo multiselect component that works great, but when text in my dropdown are too long I have to truncate it. I would show at least a tooltip on hover with the full text. Here is an example of the desired result (in this example my mouse is on the first result, getting a popup with the full text) :

 

 


Stoyan
Telerik team
 answered on 26 Apr 2021
2 answers
211 views

I found the following article about using a Kendo surface to create signatures and exporting them to SVG.  However, the example shown does not appear to work using a touch interface (finger or stylus) on a mobile device (or touch screen on a laptop).  What would need to be added to support touch?

 

https://docs.telerik.com/kendo-ui/knowledge-base/drawing-draw-signature-and-export-svg

Stewart
Top achievements
Rank 1
 answered on 26 Apr 2021
2 answers
492 views

hi team,

Is there an option to implement zoom in and zoom out in spreadsheet?

Regards,

Jaspreet

Jaspreet
Top achievements
Rank 1
Iron
Veteran
 answered on 26 Apr 2021
2 answers
457 views

Hello

I have successfully created a scrollView with pager (clickable dots at bottom). It works when I manually switch to next/previous page or click on a page dot. Now I wanted to enhance that after a few seconds the scrollView switched to the next page. On the last page it should switch back to the first page. For this I'm using the Javascript function setIntervall and scrollView's methods next and scrollTo.I have now a experienced some weird effects:

- next: With each call of method next a page button at bottom disappears
- scrollTo: After reaching the last page it keeps hanging and does not go back to first page

Here's a code sample that runs out of the box:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Auto scrollview</title>
 
 
 
    <script>
        var timerNewPage;
        var pageNewFile = 0;
 
        // Jump to next page, after page 10 jump back to page 1
        function jumpNextPage ()
        {
            if (pageNewFile > 8) {
                pageNewFile = 0;
                var scrollView = $("#scrollView").kendoScrollView().data().kendoScrollView;
                scrollView.scrollTo(0);
            }
            else {
                var scrollView = $("#scrollView").kendoScrollView().data().kendoScrollView;
                scrollView.next();
                pageNewFile += 1;
            }
        }
 
        $(document).ready(function () {
 
            // Init scrollView
            $("#scrollView").kendoScrollView({
                enablePager: true,
                contentHeight: "100%",
                page: 0
            });
 
            timerNewPage = setInterval(() => jumpNextPage(), 4000);
 
        });
    </script>
 
</head>
<body>
<div id="scrollView" style="height: 500px;">
    <div data-role="page">Page 1</div>
    <div data-role="page">Page 2</div>
    <div data-role="page">Page 3</div>
    <div data-role="page">Page 4</div>
    <div data-role="page">Page 5</div>
    <div data-role="page">Page 6</div>
    <div data-role="page">Page 7</div>
    <div data-role="page">Page 8</div>
    <div data-role="page">Page 9</div>
    <div data-role="page">Page 10</div>
</div>
</body>
</html>

 

I have tested in on lastest Safari, Chrome and Firefox, all with the same described behaviour.Is this a bug or am I doing something wrong? I've used the method refresh after page switch but didn't fix the vanishing page buttons. I've also tried to scroll to next page with scrollTo (instead of using next) but also with the same weird behaviour.

Any help/hint appreciated!

Tayger
Top achievements
Rank 1
Iron
Iron
 answered on 25 Apr 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?