Telerik Forums
Kendo UI for jQuery Forum
1 answer
293 views

I have a data source with groups already configured.  I don't want to the grouping bar at the top of the grid or to allow the user to change the group settings in any way, but I want to use the ShowFooter option to always show the group footers...

I am using the MVC wrappers .

 

.Groupable(g => g.ShowFooter(true).Enabled(true)) //always shows footers but has the grouping bar and user can x out groups even if that column was set to be not groupable

.Groupable(g => g.ShowFooter(true).Enabled(false))  // ShowFooter no longer works

is there a way to keep grouping out of the users' hands but have ShowFooter still work?

Rosen
Telerik team
 answered on 24 Apr 2015
5 answers
151 views

hi, 

 I like to show only one event per day for different attendees in timeline view angularjs. i removed times column but it shows time rows as below example 

http://dojo.telerik.com/eBoVo

 i need to show only one event for whole day where it will remove time rows from the scheduler. 

 

Thanks 

Lilan

Lilan
Top achievements
Rank 2
 answered on 24 Apr 2015
9 answers
195 views

I have some collapsible widgets that I am "routing open" by way of a view().param switch on the view's "afterShow" event.

Basically, if a user clicks a nav link I am taking them to a different collapsible in that view. This all works well, however I may have a bug or some odd behavior on my hands.

If in my onAfterShow function I call:

$("#giving-collapse").data("kendoMobileCollapsible").expand();

...But I am left with a zero height .km-collapsible-content block:

<div data-role="collapsible-content" class="km-collapsible-content km-animated" style="height: 0px; display: block;"><div>

So I have called this after calling .expand() ...

$("#giving-collapse .km-collapsible-content").css("height","auto");

Which works and shows the proper content.

Am I missing something or should this work straight away without a defined height change?

Alexander Valchev
Telerik team
 answered on 24 Apr 2015
2 answers
118 views

Hi there,

I have a problem with custom commands in combination with angular. You can see it here: http://dojo.telerik.com/EBirE

 

When I click on the custom command I get redirected to another site even if I use preventDefault in the event handler. Instead I just want to open a kendo-window.

I think the problem is, that the a tag for the button uses href="#" which is picked up by angular.

 

How can I solve that?

 

thanks a lot,

Chris

Rosen
Telerik team
 answered on 24 Apr 2015
1 answer
187 views
Is there a way to filter by date without dates get converted in utc?
Unfortunately I don't have dates saved in UTC and server-side I might not know the client language and I don't know how to convert back the value the user is searching..
Rosen
Telerik team
 answered on 24 Apr 2015
3 answers
109 views
I have noticed that Grid supports the event columnResize but the TreeList does not. Is this a bug or a missing feature and would this be fixed/implemented?
Nikolay Rusev
Telerik team
 answered on 24 Apr 2015
3 answers
384 views

I need to display a grid which looks like a pivot table with the data returned from the server in JSON format. How can I achieve that?

Georgi Krustev
Telerik team
 answered on 24 Apr 2015
3 answers
236 views

Hi,

We are trying to use a spa project template that Kendo put up on the Visual Studio Gallery https://visualstudiogallery.msdn.microsoft.com/924c3074-ceab-4be4-87e1-e9e4fd4b6d61 , The problem we are having is when building the requirejs app with the optimizer r.js, the app runs and no errors but the templates are not rendering, I can see that the templates have been included in the built file. The app and templates render no problem when not using the optimizer. 

I have attached a project with the problem,

 

Templates not rendering when using built file 

<script src="@Url.Content("~/Scripts/require.js")" data-main="@Url.Content("~/App/main-built")"></script>

 

Templates rendering with non built file

  <script src="@Url.Content("~/Scripts/require.js")" data-main="@Url.Content("~/App/main")"></script>

 

Can anyone shed some light on this please?

 

Thanks

N.

Negin
Top achievements
Rank 1
 answered on 23 Apr 2015
8 answers
227 views

Hi,

 

I'm trying to change some toolbar items at runtime by updating the options held in $scope.

The attached file in Index.zip uses an older version of Kendo and works fine (the modal window title and button text on the 2nd toolbar button get updated as I'm trying to do).

When I change to use the current version of Kendo with the following CSS/JS files, as shown in the attached file IndexBad.js.zip, it blows up with the following error:

Error: [ng:areq] http://errors.angularjs.org/1.3.0/ng/areq?p0=MyCtrl&p1=not%20a%20function%2C%20got%20undefined
    at Error (native)
    at http://cdn.kendostatic.com/2015.1.408/js/angular.min.js:6:416
    at Mb (http://cdn.kendostatic.com/2015.1.408/js/angular.min.js:19:510)
    at nb (http://cdn.kendostatic.com/2015.1.408/js/angular.min.js:20:78)
    at $get (http://cdn.kendostatic.com/2015.1.408/js/angular.min.js:74:494)
    at http://cdn.kendostatic.com/2015.1.408/js/angular.min.js:56:415
    at r (http://cdn.kendostatic.com/2015.1.408/js/angular.min.js:7:408)
    at M (http://cdn.kendostatic.com/2015.1.408/js/angular.min.js:56:281)
    at g (http://cdn.kendostatic.com/2015.1.408/js/angular.min.js:51:201)
    at g (http://cdn.kendostatic.com/2015.1.408/js/angular.min.js:51:218)

FYI, I've tried the broken version with jQuery from both the Kendo and jQuery CDNs, both throw the same error.

Is this a bug, or has some behavior changed? If it's a change, what is the correct way to do this in the updated version of Kendo?

Thanks,

Chris Csencsits

Kiril Nikolov
Telerik team
 answered on 23 Apr 2015
7 answers
476 views
I have a kendo angular slider and numeric textbox like below:
<div kendo-slider style="float:left;margin-right:10px;" id="slider2" k-min="0" k-max="100"  ng-disabled="false"></div>
 <input id="textBox2" kendo-numeric-text-box k-min="0" k-max="100"  style="width:60px;" k-options={format:'0.'} ng-disabled="false" />

Now on click of a checkbox, I need to toggle the slider and textbox between enable/disable. I am doing it like this:

var slider2 = $("#slider2").data("kendoSlider");
slider2.enable(true);
var textBox2 = $("#textBox2").data("kendoNumericTextBox");
textBox2.enable(true);

In chrome it is working but in IE (version 11) it is not.I have also created a standalone , here also the same issue.

http://dojo.telerik.com/oGuqa/3

Thanks in advance.

Regards
Satabdi
Kiril Nikolov
Telerik team
 answered on 23 Apr 2015
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
Licensing
ScrollView
Switch
TextArea
BulletChart
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
TimePicker
FloatingActionButton
CircularGauge
ColorGradient
ColorPalette
DropDownButton
TimeDurationPicker
ToggleButton
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
SmartPasteButton
PromptBox
SegmentedControl
+? more
Top users last month
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?