Telerik Forums
Kendo UI for jQuery Forum
1 answer
225 views
1) How do I hide or disable the Toggle Parameters Area, and the Toggle Document Map.  I don't want those showing or at least I want them disabled.

2) I have some reports I made in a previous version of Telerik Reporting into this new Reporting?  I do not see how to import a file or anything like that?

Best Regards,

Mark Kilroy
Stef
Telerik team
 answered on 14 Jan 2014
1 answer
132 views
I am using a listview / detail page in a mobile app similar to the listview > edit example.  However  I need to apply some formatting and some logic at display time.

My calling view has a dataset already loading and I am calling my detail view with a tap and passing the uid.  Pretty much like the example.  I am using var model = ds.getByUid(e.view.params.uid) and then binding to the view.  I need to apply some logic to one field and some formatting to a couple others (date, money, etc).  How can I accomplish this?

I have seen examples of creating a model using kendo.observable but if I do that, how do I use the passed dataset in that model?

    <input id="date" type="text" data-bind="value: posted_at" />  // need this formatted using kendo.toString(kendo.parseDate(posted_at), "d")
   <input id="seller" type="text" disabled="disabled" data-bind="value: seller" /> // this needs to be processed by getSeller()
    
Petyo
Telerik team
 answered on 14 Jan 2014
1 answer
156 views
Hello,

is there a way to delay show up of chart tooltip (and shared chart tooltip)?

I've found showAfter property (php documentation) and gave it a try via javascript

chart.options.tooltip.showAfter = 10000;

Although there is no JavaScript error it does not have any effect.

TIA
Dirk
Alexander Popov
Telerik team
 answered on 14 Jan 2014
7 answers
596 views
I need to know AFTER a tab has been selected, not before..
Is there an easy mechanism for doing so?

Dimo
Telerik team
 answered on 14 Jan 2014
1 answer
97 views
I've set a 2px border in the element itself and also in a stylesheet, but the border doesn't show up. 

The attached screenshot is what the element inspector in the simulator shows (I've confirmed it looks the same on the device).  Where is the 0px border setting coming from?




Kiril Nikolov
Telerik team
 answered on 14 Jan 2014
10 answers
442 views
I've noticed when I setup a grid that is selectable and I drag a little the row doesn't get selected.

My grid has this defined:

selectable: "row",

When I click a row, and drag a little the row doesn't get selected; the cell does get selected.
Dimiter Madjarov
Telerik team
 answered on 14 Jan 2014
1 answer
87 views
Hi everyone, I'm using the asp.net mvc wrapper chart, but I have a problem when I set the graphic type to column, is some cases I get the text undefined, I attached an image, my code is:
01.@(Html.Kendo().Chart(Model)
02.    .Name("graphicchart")
03.    .Title(title => title.Text(ViewBag.graphictitle))
04.    .Legend(legend => legend
05.        .Position(ChartLegendPosition.Bottom)
06.    )
07.    .ChartArea(chartArea => chartArea
08.        .Background("transparent")
09.    )
10.   .SeriesDefaults(seriesDefaults =>
11.        seriesDefaults.Line()
12.    )
13.    .Series(series =>
14.    {
15.        series.Column(model => model.Parvalue).Name("Valor").Labels(true).Opacity(0.8);
16.    })
17.    .CategoryAxis(axis => axis
18.        .Categories(model => model.Datetimevalue)
19.        .MajorGridLines(lines => lines.Visible(false))
20.        .Labels(labels => labels.Rotation(-90))
21.        .Date()
22.        .BaseUnitStep(10)
23.        .MinorGridLines(lines => lines.Visible(true))
24.    )
25.    .Tooltip(tooltip => tooltip
26.        .Visible(true)
27.        .Format("{0}")
28.    )
29.)
Thanks for your help!
Iliana Dyankova
Telerik team
 answered on 14 Jan 2014
4 answers
387 views
I'm using kendo spa support in 2013.3.1119

If I want to have optional query parameters, it is not clear how to do that. I've got something to work, but it feels broken, or inconsistent.

See fiddle

I'm trying to support a route with no :id param, but has optional query params, like this:
router.route("/images(?:params)", function (params) {

I could only make this work by having a dummy first parameter since "undefined" is passed as arg1:
router.route("/images(?:params)", function (dummy, params) {

That seems like a bug. 

I found if I have an :id param in my route, like:
router.route("/images/:id", function(id, params) {

Then the optional query params are implicitly passed in the second argument. This is how I'd expect it to work (with or without an :id param).


In summary, should I be trying to take advantage of the automatic/implicit second argument that contains the query params? Or should I be including the (?:params) in my route url?

Am I missing something? Is there a bug here?


Thanks
Alexander Valchev
Telerik team
 answered on 14 Jan 2014
1 answer
167 views
Hello, we are planning a new application and need some guidance.

With the 2013 Q3 release now supporting Bootstrap 3 and responsive (RWD) web design, I have a few questions that I can’t seem to wrap my head around. I'll start by briefly describing the general need.

The application needs to be mobile first with support for desktop. Mobile functionality is various views of data (think something like a Groupon mobile site to set the context) with limited input.

While these views of data will most often be viewed on smartphones and tablets, it must still produce well on laptops and larger desktops. My main concern on the desktop will be all the admin functionality (the CRUD of data). I was planning to use Kendo UI Web (MVC Wrappers) for the admin screens. These DO NOT need to provide functionality at the smaller viewport sizes on smartphones.

This seems like a perfect candidate for RWD. Currently, our prototype is an ASP.net MVC 5 application using Bootstrap 3. While Bootstrap definitely handles the responsive nature very well, I find myself wanting to use the Kendo UI Mobile widgets. For example, while the bootstrap carousel is nice, I really prefer the Kendo Mobile Scrollview widget. I like the feel of the Kendo UI Mobile transitions between views and widgets. 

This is where problem starts. While I don't have a lot of experience working with Kendo, I do understand that from a mobile perspective, I'm working with an MVC view or two that essentially contain an application with many views of functionality and data to accomplish the page transitions etc. How does this work as you scale up from a smartphone to a desktop? I can't seem to figure out if what I'm supposed to do is simply wrap the mobile "application" in the Bootstrap 3 grid system (ie: col-lg-8 etc.) on an MVC view page.

I guess what is confusing me is why the distinction between Kendo Web and Kendo Mobile when they are now responsive? And to that point, I see from the demos that the only things that really appear responsive from a widget perspective are the grid and scheduler.

I have looked high and low for a blog or something talking about the overall strategy, but have been unsuccessful.

For clarity, this would be an HTML 5 web application, not a hybrid application through icenium, however, that does send me down another rabbit hole of questions!

Thank you for any guidance.
Petyo
Telerik team
 answered on 14 Jan 2014
10 answers
111 views
It seems today I'm on a bug finding spree.
By setting data-enable-pager to false in a MobileScrollView you'll end up with this weird bug, which wasted half of my day by tracking it.
This bug occurs only with the new Flat skin.
fullscreen: http://jsbin.com/owilaf/2/
codeedit: http://jsbin.com/owilaf/2/edit
The bug: Try dragging left-right the View and you will notice you can also dragg it up-down. After releasing the mouse, the view's elements won't snap back into place.  
Until 716, this worked ok. I was able to scroll left-right OR up-down, but never with those two mixed.
I disabled the pager because the content in my ScrollView doesn't fit vertically and the pager is out of view, so pretty much useless. Because a pager was still neeeded, as a workaround I set up another pager in the footer of the View.
Tested on Chrome 28.0.1500.72, Desktop and Mobile versions.
le:
1)For some weird reason, this occurs only in the first View of the ScrollView.
2)For some other weid reason, this occurs only if I use the Pie Chart and the ButtonGroup together.
Alexander Valchev
Telerik team
 answered on 14 Jan 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
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
Dialog
Chat
DateRangePicker
Checkbox
Timeline
Drawer
DateInput
ProgressBar
MediaPlayer
ImageEditor
TextBox
OrgChart
Effects
Accessibility
PivotGridV2
ScrollView
BulletChart
Licensing
QRCode
ResponsivePanel
Switch
Wizard
CheckBoxGroup
TextArea
Barcode
Breadcrumb
Collapsible
Localization
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
Edmond
Top achievements
Rank 1
Iron
fabrizio
Top achievements
Rank 2
Iron
Veteran
RobMarz
Top achievements
Rank 2
Iron
Fakhrul
Top achievements
Rank 1
Iron
Tejas
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Edmond
Top achievements
Rank 1
Iron
fabrizio
Top achievements
Rank 2
Iron
Veteran
RobMarz
Top achievements
Rank 2
Iron
Fakhrul
Top achievements
Rank 1
Iron
Tejas
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?