Telerik Forums
Kendo UI for jQuery Forum
1 answer
121 views
Hello there,

I'm trying to refactor the UX of my App.

I want to remove the footer (with 2 buttons) and instead let the user swipe right or left to display not a menu but an entire page, like if there was 3 completely different pages on the app that the user can access by simply swiping left or right.

As my two pages wrapped into the drawer contain a simple list, it should work fine (I think) but my problem is that I can't swipe back to the main page when I put the drawer with a width of 100% since the menu button will be outside the current view and there is no way to go back to the main page.

How can I fix this ? or is there a better way to do it ?

Many Thanks

Attached is a screen shot of what happen when I put the drawer with to 100%. I can't go back to the main page.
Petyo
Telerik team
 answered on 10 Apr 2014
1 answer
201 views
Hello,

 I'm having trouble finding a solution that allows me to retrieve a node within a treeview that ignores the case type.

 The code below works if the correct case is supplied.

  var ds = treeview.dataSource;
  var node = ds.get(path[0]);

Is there a simple way to ignore the case on the data source?

Regards

Paul
Alexander Popov
Telerik team
 answered on 10 Apr 2014
6 answers
239 views

I've been trying to use chart and sparkline.

I have a few questions:
1) I've read in the forum that there should be no difference between the two except visual differences (http://www.telerik.com/forums/sparkline-vs-chart-efficiency-).
This doesn't seem to be the case: http://plnkr.co/edit/12gvS94rPTrR7t35wCCH?p=preview
I've created a chart (http://plnkr.co/edit/12gvS94rPTrR7t35wCCH?p=preview) and then a sparkLine (http://plnkr.co/edit/6LRb16QIgUuoWAbxLuyq?p=preview) with the same configuration (same datasource and same options file) and it gives an error when creating the sparkline but not when creating the chart.
2) How can I get the "sparkLine" effect in a "chart", or if it's easier, how to make the "sparkLine" look as good as a chart?
3) I've read these posts:
http://www.telerik.com/forums/get-chart-coordinates-for-mouse-position
http://www.telerik.com/forums/mouse-position---data---position-are-not-the-same-values
They show how to get mouse position in Silverlight and WPF.
How can I get the mouse coordinates using javascript/jQuery? 

Thanks

 

T. Tsonev
Telerik team
 answered on 10 Apr 2014
2 answers
149 views
Lets say I have a listview, and I wish to dynamically add a row to by inserting an <li> to the existing list <ul> using JavaScript.  The new row will not have the styling to mimic the mobile application, it looks like a plain <li> stuck in the middle of the list.

I understand why this problem happens, because the CSS classes are dynamically added to the plain HTML when the page loads.  But, is there a way to tell Kendo UI Mobile's JavaScript to "re-parse" the HTML to style up any dynamic additions to the HTML?

Thanks.
Petyo
Telerik team
 answered on 10 Apr 2014
1 answer
89 views
Hi,

I have a grid which is bound to client side data. I use pagesize and virtual scrolling to help with performance as I am using a kendo sparkline in each row (not shown in demo).  I am seeing an issue with the aggregate values I have in the footer, this is using the built in #=sum# template. when the grid first binds the aggregates are correct, but as you scroll down to the next page the aggregates change to only represent that page of data. If you then sort it refreshes back to the full amount of data.  Here is a plunker showing the symptom:

http://plnkr.co/edit/THTGzE?p=preview

Rosen
Telerik team
 answered on 10 Apr 2014
1 answer
122 views
Hi,
I've a grid with detail template (another grid), all of them were defined in declarative manner, the detail grid have some columns, one of them have a defined template, but the problem is the scope of this template.

If I intended to use the column 'field' attribute, it keep always undefined, and from some inspections, I knew that it always see the parent grid row, not the detail one.

See this jsfiddle
Alexander Valchev
Telerik team
 answered on 10 Apr 2014
1 answer
66 views
Hi

I have a problem with Kendo Scheduler in IE8. The problem also appears on your demo site - http://demos.telerik.com/kendo-ui/web/scheduler/events.html
When selecting a cell, it is selected, the color changes. When I want to select another one, I have to click two times - once to deselect actual selection and once to select another cell. 
For now I only found this problem on IE8.

Regards
Pawel
Vladimir Iliev
Telerik team
 answered on 10 Apr 2014
1 answer
105 views
From a grid row I would like to open a kendoWindow that provides a form and is pre-filled with the dataitem from the selected row.
The window is using a kendoTemplate as its content and now I want to use various kendo widgets in the template like datepicker and numerictextbox etc.

My current solution can be found in this fiddle:
http://jsfiddle.net/somethingunique/W5tj2/

Can somebody help me out, why the numerictextbox is not shown in my solution? Or should I an event on the window or template to initialize the numerictextbox

Dimo
Telerik team
 answered on 09 Apr 2014
1 answer
124 views
Hi,

It seems that I just cannot get beyond this issue.This is an example of dataset:[
{ type: "FOO", date: 1396952060722, count: 3 },
{ type: "BAR", date: 1396952060722, count: 2 },
{ type: "FOO", date: 1396952060722, count: 4 },
{ type: "BAZ", date: 1396952060722, count: 1 },
{ type: "FOO", date: 1396952060722, count: 3 },
{ type: "FOO", date: 1396952060722, count: 3 }
]
How can I make stacked column chart where X axis holds dates and columns are stacked bytype with count fields summed (Y axis) if they fall under the same date. I also need a way to regulate date granularity (year/month/day) and the data should distribute accordingly.Is there a buildin way to do this or I'll have to make complex data transform?

This is really important feature for us and I want to take advantage of every Kendo feature as much as possible so I can justify possible purchase.

Thanks.

T. Tsonev
Telerik team
 answered on 09 Apr 2014
1 answer
353 views
Hi there,

I want to add a default filter to a boolean column in the grid. Could you tell me how to do it?

@(Html.Kendo()
.Grid<Client.Website.Models.ClientModel>()
.Name("ClientGrid")
            .HtmlAttributes(new { style = "height:100%; clear:both;table-layout: fixed;" })
            .Columns(columns =>
            {
                columns.Bound(c => c.ClientId).Hidden();
                columns.Bound(c => c.Name);
                columns.Bound(c => c.IsActive).Width(80).Filterable(filter=>filter.Enabled(true));
                columns.Bound(c => c.Notes)})
            .DataSource(dataSource => dataSource
                    .Ajax()
                    .PageSize(20)
                    .Read(read => read.Action("GetClients", "Client"))
                    )
            .Scrollable()
            .Pageable()
            .Sortable()
            .Selectable()
            .Filterable())

Thank you


regards
Jerry
Alexander Popov
Telerik team
 answered on 09 Apr 2014
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
Drag and Drop
Application
Map
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
DropDownTree
ListBox
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
LLM Kit
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?