Telerik Forums
Kendo UI for jQuery Forum
5 answers
483 views
Hi, 

Is there a way to control the z-index of series in kendo ui charts? 

In the attached screenshot, the blue line is reference data while the black one is actual data. Is there a way to make the black line go over the blue one? This would (I think) help with the fact that the tooltip is hard to reach. Plus it would make my customer happier.

Thanks
Hristo Germanov
Telerik team
 answered on 18 Jul 2014
3 answers
182 views
Can I get a navigator in a line chart or have multiple series in a stock chart.
Hristo Germanov
Telerik team
 answered on 18 Jul 2014
1 answer
266 views
I'm sending a request to a web service when a row is first selected. That request binds another grid and, depending on which row you select and how big the data set is, it sometimes takes a second to bind. I'm ok with that happening when it's first selected. But I don't want that to happen every time I click on it because I have a context menu attached to it.

Is there a way to know if the row is already selected when it's clicked? I would be able to cancel the server call on change in that scenario and make this work beautifully. I can't seem to find any documentation on it, though.
Dimiter Madjarov
Telerik team
 answered on 18 Jul 2014
1 answer
185 views
I'm Quite new to Telerik, kendo, and HTML(great start, I know), but I'm developing a WebApplication that will disply Oracle - queried data. I am able to bring in the data from a c# class which has the form List<class> where the class has a couple strings and decimals. My question is how can I initialize this list into the grid?, I'm assuming I need to use a script like this:

    <script>
        $(document).ready(function () {

            $("#grid").kendoGrid({
                height: 550,
                groupable: true,
                sortable: true,
                pageable: {
                refresh: true,
                pageSizes: true,
                buttonCount: 5
                },
                dataSource: {

                }
                
            });
        });
    </script>


-------------------------------------------------------
This is now I initialized by table:
<table id="grid">
        <colgroup>
            <col />
            <col />
            <col style="width:110px" />
            <col style="width:120px" />
            <col style="width:130px" />
        </colgroup>
        <thead>
            <tr>
                <th data-field="make">Field a</th>
                <th data-field="model">Field b</th>
                <th data-field="year">Field c</th>
                <th data-field="category">Field d</th>
                <th data-field="airconditioner">Field e</th>
            </tr>
        </thead>
        <tbody>
 
        </tbody>
    </table>

------------------------------------------------------------
And i bring in my List<Class> like this:

@{
    var info = new DB();
    List<class> data = info.getdata(); //Where info.getdata() is a function of the DB that returns the list<class> of data
 }
Vladimir Iliev
Telerik team
 answered on 18 Jul 2014
1 answer
930 views
Hi, I´m having some trouble editing dates in a grid. In the schema model, the type is "date". If i set the date to 02/07/2014 (using the calendar that pops up automatically) in the model the object it´s transformed into: Date {Wed Jul 02 2014 00:00:00 GMT+0200}. Then, when sending this object back to the server for saving the row, the value sent is 2014-07-01T22:00:00.000Z, which is the json representation for that date, i guess (JSON.stringify and kendo.stringify subtract those 2 hours from the date), so the value stored in the database is wrong.
I need to know what is the correct way to manage this. Best solution for me would be that the framework somehow created those dateTime objects without specifying +2 GMT.
Thanks.


Alexander Popov
Telerik team
 answered on 18 Jul 2014
1 answer
440 views
Hi, I have a grid column with a custom editor (standard html select), on which i have set the 'required' attribute.
When i try to save the row, a validation message is shown (cool), but it uses the field name, not title (uncool - the title is the user interface).

How can i get a custom message in (for required field), or make it use the title?

Alexander Popov
Telerik team
 answered on 18 Jul 2014
1 answer
80 views
Hi
  If this is the wrong place to ask this then can you please tell me what the right place is?

  Search for 'kendo ui demos', pick any control

Click on 'Edit this example'

and you get taken to this non existent site

http://dojo.telerik.com/

It seems to have been like this for the last 24 hours?

It could be at our end but I've tried on 3 pcs and via a mobile which isn't on the company network

thanks
Anthony
Top achievements
Rank 1
 answered on 18 Jul 2014
0 answers
115 views
Hi,

I Have a angular kendo grid with 4 columns ..creating an angular kendo grid is easy referring to the site-http://kendo-labs.github.io/angular-kendo/#/

But the problem is i have to implement a tooltip for all the rows at column 3 and a kendo window should pop up after clicking at column 4

This is the link where i have created an angular kendo grid-              http://plnkr.co/edit/ZxouzcHazgxpjhQ2PUn3?p=preview

please post a plunk with my needs.
Rajeev
Top achievements
Rank 1
 asked on 17 Jul 2014
4 answers
111 views
At the server have something like that, to see if the date is correct
'System.err.println(rs.getDate("birth_date"));'
OK, it shows in console 1994-11-25

But in browser by JSON shows only "birthDate":"??? 25, 1994"
so it can't be shown at the jsp page

'<kendo:dataSource-schema-model-field name="birthDate" type="date">'
...
'<kendo:grid-column title="Birthdate" field="birthDate" />'

the column os empty.
What am I doing wrong?

Sincerely,
Alex
Atanas Korchev
Telerik team
 answered on 17 Jul 2014
1 answer
207 views
Hello,

I have a question based on my current situation, I have a grid with ClientDetail / Child grid inside of it. In my parent grid there is a custom command button, let say... "columns.Command(command => { command.Custom("Edit").Click("showEdit"); command.Destroy(); }).Width(160);" and also i had my custom command button as well in my child grid, let say "columns.Command(command => { command.Custom("Edit").Click("showSubEdit"); command.Destroy(); }).Width(160);"

Those 2 custom command should call different function which is "showEdit" & "showSubEdit". The problem is, every time custom command in child grid triggered, it always calls its parent's function which is "showEdit", however the child grid should call "showSubEdit".

Is there something i missed ?

NB :
function showEdit(e) {
...
}
function showSubEdit(e) {
...
}


Rosen
Telerik team
 answered on 17 Jul 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
Chat
DateRangePicker
Dialog
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
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?