Telerik Forums
Kendo UI for jQuery Forum
0 answers
84 views
I am completely unable to find the script builder app since the user account area has been fuglified...

Whats the URL to it, or where can it be found?
sitefinitysteve
Top achievements
Rank 2
Iron
Iron
Veteran
 asked on 17 May 2012
8 answers
819 views
is it possible to restrict the upload to only certain file types?
i am already validating that in the handler... but would prefer to just prevent the user from selecting an invalid file type.
Manuel
Top achievements
Rank 1
 answered on 17 May 2012
1 answer
110 views
Hi,

Is it possible to append event on numeric text box after it's initialized?

Thanks~
Joseph Roberts
Top achievements
Rank 1
 answered on 17 May 2012
0 answers
109 views
Hello Kendo Team,
I am using putting a value in dropdownlist lang attribute I want to access it in Select Function but not getting anything which
can help me

please reply me asap
your help will be appreciated

Regards Saad
<script type="text/javascript">
  jQuery(function(){
             jQuery('.kendo-ddl-Task').kendoDropDownList({
                select: function (e) {
                    xTaskStatusDdl_change(e);
                }
             
            });
});
function xTaskStatusDdl_change(e) {           
            var selectedValue = e.item.index();
           //Trying to access parent but this is not working
           //alert(jQuery(this).parent().html());
 
        }
</script>
<asp:Repeater ID="rptPastDueTask" runat="server">
                                    <ItemTemplate>
                                                                                    
                                                    <asp:DropDownList ID="xTaskStatusDdl" runat="server" lang='<%# DataBinder.Eval(Container.DataItem, "XTaskID")%>'
                                                            CssClass="xTaskStatusDdl kendo-ddl-Task">
                                                    </asp:DropDownList>                                                   
                                                     
                                    </ItemTemplate>
                                </asp:Repeater>


saad
Top achievements
Rank 1
 asked on 17 May 2012
2 answers
128 views
Hi,

I have a selectable list view where, on select, I want to append a DIV that is rendered elsewhere in the page, that I'm getting using the jQuery detach function.

The div has the items details and is bound to a property from my ViewModel (observable).

Since I'm having some trouble, anyone could share if this is a viable way?

I succeed having the elements appended, but it seam to loose the data-bind to the ViewModel.

Is this supposed to happen?

Thanks in advance,
Ricardo
rlapao
Top achievements
Rank 1
 answered on 17 May 2012
16 answers
1.8K+ views
Hi,

I have a datasource (json) that is structured like this:

[{"name": "series 1", "value": 1, "date": 2011-12-01},
 {"name": "series 2", "value": 2, "date": 2011-12-01}]

Is there any way to use the chart so that it creates the series from the datasource i.e.

    <script>
                function createChart() {
                    $("#chart").kendoChart({
                        theme: $(document).data("kendoSkin") || "default",
                        dataSource: {
                            transport: {
                                read: {
                                    url: "_list/series_list/all_series",
                                    dataType: "json"
                                }
                            }
                        },
                        title: {
                            text: "my series"
                        },
                        legend: {
                            position: "top"
                        },
                        seriesDefaults: {
                            type: "line"
                        },
                        series: //USE A TEMPLATE HERE SO FOR EACH NAME IN THE JSON A SERIES IS CREATED.
                        [{
                            field: "value",
                         }
        ],
                        categoryAxis: {
                            field: "date",
                            labels: {
                                rotation: -90
                            }
                        },
                        valueAxis: {
                            labels: {
                                format: "{0:N3}"
                            },
                            majorUnit: 1
                        },
                        tooltip: {
                            visible: true,
                            format: "{0:N3}"
                        }
                    });
                }
                $(document).ready(function() {
                    setTimeout(function() {
                        createChart();


                        // Initialize the chart with a delay to make sure
                        // the initial animation is visible
                    }, 400);
                });
           </script>
I really don't like having to edit my page each time the database has a new series added.

 thanks,
  nisbus
Jeffrey
Top achievements
Rank 1
 answered on 17 May 2012
3 answers
104 views
Hi,
 
I have integrated the Splitter with vertical orientation.  While the content is overflowing the height of splitter, vertical scroll bar comes that is acceptable. But with vertical scroll bar stay in place when I collapse the splitter on IE 9, scroll bar stay intact which should not. (check out the attached JPG for the same).

Is this the bug of splitter on IE?

Let me know any possible suggestion.

Thanks
pratik
Top achievements
Rank 1
 answered on 17 May 2012
2 answers
140 views

I know how to add an menu item to an existing item but I would like to know how to add an item to the menu root.

Here's the code I have so far:

var MainMenu = $("#MainMenu").kendoMenu({
    animation: {
        open: { effects: "fadeIn" },
        close: { effects: "fadeIn" }
    }
});
 
MainMenu.append({ text: "New Root Item" }, MainMenu);

Simon
Top achievements
Rank 1
 answered on 17 May 2012
2 answers
154 views
Hi,

I cant seem to get grid paging to work. Even after specifying the total records the data is not paged.  You can find the fiddle below.
http://jsfiddle.net/sarvesht/p9Trg/12/

Regards,
Sarvesh
Sarvesh
Top achievements
Rank 1
 answered on 17 May 2012
1 answer
96 views
I haven't done a ton of testing and obviously I wouldn't do it on purpose even though it sounds like a "dont do that" situation but with the nature of dynamic interfaces I thought others may run into this.

If I have an <input /> with a class "k-input" and then tell it to be a kendoDropDownList or ComboBox, it actually crashes my browser if you try to click in the field. Like I said I didn't do a bunch of controlled tests but I have several drop lists and a grid in a panelbar also and I am seeing it crash in firefox 12 on a win 7 32b pc.
Dimo
Telerik team
 answered on 17 May 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
Form
View
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
AICodingAssistant
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
+? 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?