Telerik Forums
Kendo UI for jQuery Forum
7 answers
500 views
I'm trying to return a response from my save handler:

     Sub ProcessRequest(ByVal context As HttpContextImplements IHttpHandler.ProcessRequest      
        ' Some save logic
         
        context.Response.Clear()
        context.Response.ContentType = "text/plain"
        context.Response.Write("{'result':'result value'}")
    End Sub

but in my success event handler I got null for "e.response". Any help would be appreciated.
T. Tsonev
Telerik team
 answered on 20 Dec 2011
1 answer
84 views
I am trying to show data from a long running calculation in Grid. In order to speed the process up I have broke the data into several calls to a webservce, giving me several groups of JSON data. What is the best way to put that in a Grid? I would like to add each section to the Grid as it returns rather than waiting and having everything pop at the end.

What is the best way of doing this?

I have tried creating a kendo.data.DataSource and then adding the records. The demo shows an add method, but I am getting an error when I call it.
Declared at top of script, the add line is in an anonymous function from a success function on a $.ajax call.
var localDataSource = kendo.data.DataSource;

Error from FireBug Console: localDataSource.add is not a function
Rosen
Telerik team
 answered on 20 Dec 2011
4 answers
153 views
Hi Kendo Team

Is there a way to include all single forum rss feeds in one?
at the moment every forum has its single rss feed, but I want all the kendo forums in one rss feed.

Is there any solution for this?

Many thanks and best regards
Paddy
Iva
Telerik team
 answered on 20 Dec 2011
0 answers
69 views
the instruction at http://www.kendoui.com/get-kendo-ui.aspx  includes this line:
<
script src="jquery-1.6.2.min.js"></script> 

While I downloaded the free trial (personal) version and found there's no this script file in the js folder, should be

<script src="jquery.min.js"></script>  
James
Top achievements
Rank 1
 asked on 20 Dec 2011
2 answers
66 views
I have the following code to bind a chart to data. This code works in IE 9 and Firefox, but throws an error in IE 8. If i remove the second filter item, then it will work in IE 8.  Am I doing something incorrectly?

$("#otherEthnicityChart").kendoChart({
        theme: "metro",
        dataSource: {
            data: indicator14reportData,
            filter: [
                { field: "DataClass", operator: "eq", value: "OtherChart" },
                { field: "Agency", operator: ">", value: "E" },
            ],
        },
        title: {
            text: "Other"
        },
        legend: {
            position: "bottom"
        },
        seriesDefaults: {
            type: "column",
            stack: true
        },
        series: [
            {
                field: "HigherEducationPercent",
                name: "Higher Education",
                color: "#5084EA"
            },
            {
                field: "CompetitivelyEmployedPercent",
                name: "Competitively Employed",
                color: "red"
            },
            {
                field: "OtherEducationPercent",
                name: "Other Education",
                color: "green"
            },
            {
                field: "OtherEmploymentPercent",
                name: "Other Employment",
                color: "purple"
            },
            {
                field: "NotEngagedPercent",
                name: "Not Engaged",
                color: "#F2F471"
            }],
        tooltip: {
            visible: true
        },
        categoryAxis: {
            field: "Agency"
        },
        valueAxis: {
            max: 100,
            min: 0,
            labels: {
                format: "{0}%",
                max: 100
            }
        }
    });
John Hunter
Top achievements
Rank 2
 answered on 20 Dec 2011
2 answers
130 views
Hi, 

I watched KendoUI Introduction Video and I am interest Tools using on 1:06.
It's should be powerful Drag-and-Drop tools to build project with KendoUI.
What is the name of that program? Thank you.



Bryan Alfaro
Top achievements
Rank 1
 answered on 20 Dec 2011
0 answers
100 views
Want to bootstrap my Kendo UI development migration and would like to know if anybody is in the Seattle/Bellevue area who would be interested in a short term gig moonlight or primary to get us up and running and evalauting this platform.
Shawn
Top achievements
Rank 2
 asked on 19 Dec 2011
1 answer
83 views
I have a menu system that allows me to select an URL which I want to load into a window and then display it.

Here is my code:

    <script type="text/javascript">
        $(document).ready(function () {
            $("#menu").kendoMenu();
        });
    </script>


    <script type="text/javascript">
        $(document).ready(function () {
            $(".menu-dialog").click(function () {
                var href = $(this).attr("href");
                var title = $(this).attr("title");
                alert("Got Here: " + title +  ' => ' +  href);
                var myWin = $("#window").kendoWindow({
                    title: title,
                    width: "200px",
                    height: "200px",
                    modal: true,
                    visible: false,
                    content: href
                });


                myWin.open();
            });
        });
    </script>

The Menu function works correctly and the menu is displayed.

The function that is supposed to fire on menu selection fires correctly (The alert box is displayed), however the window is not displayed and the contents of the page pointed to by href is displayed.

any help would be appreciated.

Mike B.
michael
Top achievements
Rank 2
 answered on 19 Dec 2011
1 answer
90 views
Hey team at Telerik,

Just letting you know that in the Kendo UI that I downloaded with my Telerik Professional pack the DropDownList demo always says in the message box it is a size small cap regardless of what the drop down says.

The other is the TabStrip demo. Sydney (Australia) is the correct spelling - not Sidney.

Small things but thought I should let you know.

Regards,
Rob Francis
Dimo
Telerik team
 answered on 19 Dec 2011
1 answer
499 views
I read similar issue with window as well. 

As a general rule, any thing that pops up dynamically (menu, dropdown, auto complete) should have z-index set such a way that it can be seen above all other items currently in the display.

For example, I created menu in one Splitter Pane and showing the target in another Pane (you can question why would I need that - and there can be better way around) - but the menu was hidden within its own frame and did not show up. I have tried the same thing in ASP Rad Control and had got it working.
Dimo
Telerik team
 answered on 19 Dec 2011
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?