Telerik Forums
Kendo UI for jQuery Forum
1 answer
102 views
Hi guys,
Great job with the UI and Keep on the good work.
I have a thought about the Url when I combine using the grid filterable, groupable etc very unclean.
And my question is that there are some ways I can make the Url little cleaner somehow ? 

http://localhost:55517/Assignment/Completed?Grid-page=1&Grid-orderBy=~&Grid-groupBy=CreatorCaption-asc&Grid-filter=~&Grid-size=10 

Regards

Your Unique Customer ID is: RM917591
Mike
Top achievements
Rank 2
 answered on 20 Aug 2012
1 answer
731 views
Hi,
1) I am using the following code in the Change event:
@(Html.Kendo().DropDownListFor(m => m.Page.PageSource)
                          .DataTextField("Text")
                          .DataValueField("Value")
                          .BindTo(Model.PageSourceList)
                          .Value(Model.Page.PageSource)
                          .Enable(!Model.Page.IsSystem)
                          .HtmlAttributes(new { id = "source" })
                          .Events(e=>e.Change(@<text>
                          function(e) {
                            alert(e.item);
                          }</text>)))

and I get "undefined" when I change the item in the select list.

2) Is there a way to have this event fire initally when the page loads?

Thank you,
David A
Georgi Krustev
Telerik team
 answered on 20 Aug 2012
3 answers
267 views
Is there a way to detect that the user has scrolled to the end of the list so that more list items can be loaded from a remote datasource for example?

Ideally, since the Kendo Datasource framework already supports paging, the ListView should just auto-detect that the list needs to load the next page of records when the user scrolls to the end of the list items currently loaded.
Georgi Krustev
Telerik team
 answered on 20 Aug 2012
1 answer
209 views

It's a bug that I also reproduced on your site

First enter this date in the date picker: August 31, 2012
- With the date picker calendar, click on header to display the 12 month
- Select November

The month that appears is December's

The problem is, if the date display at first is a 31 and the month you select have only 30 day, he display the next month.

 

Georgi Krustev
Telerik team
 answered on 20 Aug 2012
1 answer
2.2K+ views
How do I make a chart axis label (or any chart label for that matter) bold?  If I apply font: "bold" to my categoryAxis: { labels: {} }, it just moves the labels around a bit and definitely doesn't make them bold (I'm using IE9).  I can't use the templates because they don't seem to support HTML markup.  All I really want to do is keep all the other styles the same, just apply font-weight: bold;

Thanks!
Hristo Germanov
Telerik team
 answered on 20 Aug 2012
1 answer
221 views
I've a pop-up editing grid with custom pop up template. This works find for Edit/Add button clicks.

In grid I've a hyperlink column defined like below:
{field:"Count", title:"Settings", filterable: false, width: 100, 
    template:'<a href="\\#" onlick="editSettings();">#=Count#</a>'

But the JS method editSettings() is not invoked.

In the JS method I want to show a modal popup defined on the page. Any ideas what's wrong?
Thanks.
Just
Top achievements
Rank 1
 answered on 20 Aug 2012
1 answer
114 views
seriesDefault.gap doesn't appear to be working.  I have to specify the gap on the series in order to have any effect.  In my relatively simple example,
            seriesDefaults: {
                type: "bar",
                stack: true,
                labels: {
                    visible: true,
                    position: "insideBase",
                    format: "c0"
                }
            },
            series: [{
                field: "Amount",
                gap: 0.3
            }],

works, but
            seriesDefaults: {
                type: "bar",
                stack: true,
                labels: {
                    visible: true,
                    position: "insideBase",
                    format: "c0"
                },
                gap: 0.3
            },
            series: [{
                field: "Amount"
            }],

does not.
Hristo Germanov
Telerik team
 answered on 20 Aug 2012
2 answers
89 views
I was wondering if the gap at the bottom issue has been actually patched in the revision 2.2012.2.710?
It seems that I am still getting the issue on my iPhone(ios 5.1.1). That however renders ok on my Chrome on my Windows 7.
Any one with a clue? Thanks. 

By the way, I've seen the issue previously mentioned in http://www.kendoui.com/forums/mobile/general-discussions/backbutton-bottom-gap.aspx#0 

Joon
Top achievements
Rank 1
 answered on 20 Aug 2012
1 answer
266 views
I have 4 cascading combos

$("#LineOfBusiness").kendoComboBox({
    dataTextField: "LineOfBusiness",
    dataValueField: "LineOfBusiness",
    dataSource: {
        type: "json",                           
        transport: {
            read: "/ajax/lobs.php"
        },
        serverFiltering: true,
        schema: {
            data: "data",
            total: "total"                      
        }
    },
    filter: "contains",
    suggest: true,
    index: 3
});
 
$("#ProjectName").kendoComboBox({
    cascadeFrom: "LineOfBusiness",
    autoBind: false,
    dataTextField: "ProjectName",
    dataValueField: "ProjectName",
    dataSource: {                           
        type: "json",
 
        transport: {
            read: "/ajax/projects.php"
        },                           
        serverFiltering: true,
        schema: {
            data: "data",
            total: "total"                      
        }
    },
    filter: "contains",
    suggest: true,
    index: 3
}).data("kendoComboBox");
 
$("#HRLevel").kendoComboBox({
    cascadeFrom: "ProjectName",
    autoBind: false,
    dataTextField: "HRLevel",
    dataValueField: "HRLevel",
    dataSource: {                           
        type: "json",
        transport: {
            read: "/ajax/hrlevels.php"
        },
        serverFiltering: true,
        schema: {
            data: "data",
            total: "total"                      
        }
    },
    filter: "contains",
    suggest: true,
    index: 3
}).data("kendoComboBox");
 
$("#Manager").kendoComboBox({
    cascadeFrom: "HRLevel",
    autoBind: false,
    dataTextField: "ManagerName",
    dataValueField: "ManagerName",
    dataSource: {
        type: "json",
        transport: {
            read: "/ajax/managers.php"
        },
        serverFiltering: true,
        schema: {
            data: "data",
            total: "total"                      
        }
    },
    filter: "contains",
    suggest: true,
    index: 3
}).data("kendoComboBox");
 
var lob = $("#LineOfBusiness").data("kendoComboBox");
var projectname = $("#ProjectName").data("kendoComboBox");
var hrlevel = $("#HRLevel").data("kendoComboBox");
var manager = $("#Manager").data("kendoComboBox");

the first one works fine but when I select an item from it nothing happens to the second one...
I want to be able to select an item from all to send to the server to generate the data for the grid I have below.
Georgi Krustev
Telerik team
 answered on 20 Aug 2012
1 answer
85 views
Hi, I'm trying to create a bubble chart that looks like a column type.  Please see attachment. Cant find anything similar on the examples page.

Thanks
Anton
Top achievements
Rank 1
 answered on 20 Aug 2012
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
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
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?