Telerik Forums
Kendo UI for jQuery Forum
1 answer
761 views

I updated to the latest version of kendo ui in my project (I cannot provide examples of code).  I noticed that the little spinner "span.k-icon.k-i-loading" is staying visible since the latest update.  I'm not sure if there is an issue with a css file or something else.

 

 

Dimitar
Telerik team
 answered on 08 Jan 2018
3 answers
307 views

Hello,

I've opened a ticket with this question and it occurred to me I should have probably asked it here first. Sorry about that.

 

Is it possible to use angularjs + ng-click inside of a listbox template if i construct the listbox using angular syntax? For example I have the following plunker, I'd like to be able to click one of the items in the listbox and have it call the same ng-click function that the button can (really I want any angular stuff in there to work, not just ng-click):

https://embed.plnkr.co/Woy3VBlWOFYFrhdBsjmR/

In contrast I am able to do what I want (e.g. put a ng-click in the template) if I construct the listbox using jquery syntax
https://embed.plnkr.co/7fRww24CkslSxWwY3PQy/
here i can use angular e.g. ng-click in the listbox template, but I'd rather NOT initialize the listbox using jquery syntax since it means I'd have to refactor some stuff.

I found this link and it makes me think maybe this isn't supported for this listbox? but perhaps you have a clever hack...
https://docs.telerik.com/kendo-ui/AngularJS/introduction#template-directives

Alex Hajigeorgieva
Telerik team
 answered on 08 Jan 2018
2 answers
366 views

Hi,

We have a need to test our application for different days of the year, we are doing this by setting a 'fake' system DateTime.  I'd like to display this on the gantt via the currentTimeMarker.  Is there anyway to override the datetime that this line uses either in JS or c#?

Thanks, Matt

Joana
Telerik team
 answered on 08 Jan 2018
2 answers
69 views

This is probably a long shot, but thought I'd ask if anyone has any suggestions.

I've got a grid where the first column is a checkbox column for selecting rows. I've then added a kendoMenu to this column to provide actions to perform on the selected rows. However if I start re-ordering columns they get messed up in weird and wonderful ways.

We're on version 2013.2.918 and I've recreated the issue in a kendo dojo (try dragging Quantity Per Unit over to be the first column to see the error).

I've updated the example to the very next released version of kendo (2014.1.318) and the problem goes away. However due to project timeframes a kendo upgrade at this point would not be ideal.

Can anyone suggest a workaround (without upgrading kendo)? 

 

Stefan
Telerik team
 answered on 08 Jan 2018
1 answer
2.3K+ views

Hello

 

I have grid with selectable columns

grid = gridDiv.kendoGrid({
    dataSource: dataSource,
    columns: [
        {
            selectable: true,
            width: "50px",
        }
    ],
 
});
 
kendoGrid = grid.data("kendoGrid");

 

Is there any event that triggers when select/unselect happens. I need to trigger some other events when selection is changing + set some properties on data item.  

 

Thanks

Eduardo Serra
Telerik team
 answered on 05 Jan 2018
1 answer
3.8K+ views

With the addition of the selectable column, is there a way to default the column so that everything is selected when the grid loads?

https://demos.telerik.com/kendo-ui/grid/checkbox-selection

Eduardo Serra
Telerik team
 answered on 05 Jan 2018
5 answers
175 views
I want to import the calendar in angular2/4 project? What are the steps for installation?
Eduardo Serra
Telerik team
 answered on 05 Jan 2018
3 answers
307 views

Hello

 

Is it possible to render grid under one invisible element, but show it in different one. Main problem is that showing element is disappear each time when user communicate with my app,If i generate new grid one each refresh selectable column in the grid stops working.

 

Can you guide me how to solve one or another problem.

Eduardo Serra
Telerik team
 answered on 05 Jan 2018
13 answers
1.9K+ views
Is this a standard piece of functionality?

If so, how do you do it with a standard grid?

If it's not, are there currently any plans for it in future releases?

Thanks!
Gregor
Top achievements
Rank 1
 answered on 04 Jan 2018
8 answers
1.5K+ views

I have a grid with endless scrolling. I want to load filtered rows to the grid. Any other operation shoud be performed on the client side. 

I expect the grid will send a request only on a first grid loading and when I set a new filter. 

Sorting, grouping, paging should be done on a client side. 

BUT when I scroll down my grid endless scrolling is activating and grid sends a request to the server even if I set serverPaging to false.

My source code:

01.function loadGrid(profile) {
02.        $("#Grid").kendoGrid({
03.            dataSource: dataSource(profile),
04.            columns: profile.Columns ? JSON.parse(profile.Columns) : [],
05.            scrollable: {
06.                endless: true
07.            },
08.            pageable: {
09.                numeric: false,
10.                previousNext: false
11.            },
12.            groupable: true,
13.            sortable: {
14.                mode: "multiple",
15.                allowUnsort: true,
16.                showIndexes: true
17.            },
18.            filterable: {
19.                mode: "row"
20.            },
21.            selectable: "multiple cell",
22.            navigatable: true,
23.            resizable: true,
24.            reorderable: true,
25.            columnMenu: {
26.                filterable: false
27.            }
28.        });
29.    }
30. 
31.    function dataSource(profile) {
32.        return new kendo.data.DataSource({
33.            type: "webapi",
34.            pageSize: 50,
35.            transport: {
36.                read: {
37.                    url: "BI",
38.                    type: "POST"
39.                }
40.            },
41.            group: JSON.parse(profile.Groups),
42.            sort: JSON.parse(profile.Sortings),
43.            filter: JSON.parse(profile.Filters),
44.            serverFiltering: true,
45.            serverPaging: false,
46.            serverSorting: false,
47.            serverGrouping: false,
48.            serverAggregates: false
49.        });
50.    }

Stefan
Telerik team
 answered on 04 Jan 2018
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
Chat
MultiColumnComboBox
Dialog
DateRangePicker
Checkbox
Timeline
Drawer
DateInput
ProgressBar
MediaPlayer
ImageEditor
TextBox
OrgChart
Accessibility
Effects
PivotGridV2
ScrollView
Switch
TextArea
BulletChart
Licensing
QRCode
ResponsivePanel
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
ContextMenu
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
DateTimePicker
RadialGauge
ArcGauge
AICodingAssistant
SegmentedControl
+? more
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
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?