Telerik Forums
Kendo UI for jQuery Forum
1 answer
154 views
1. Can I use KendoUIWeb package from nuget, or Kendo UI Web archive (gpl3), downloaded from this site

in internal project for free, without any charge.

2. Both these packages (nuget and archive) doesn't contains kendo.aspnetmvc.*.js script file, which is included into trial package

Is it means that I cannot use kendo.aspnetmvc.*.js in project without charge?

3. Same question regarding kendo.mvc.dll (where html helpers is situated)



Thank you for your answer.
Sebastian
Telerik team
 answered on 23 Oct 2012
0 answers
123 views
Hi,

I'm trying to get a user's timeline from twitter and display it in a list view. Currently I have a list view that displays the first 10 tweets in a user's timeline. However the endless scrolling feature doesn't work! No animation is shown when you get to the bottom of the page and no call to twitter is made via http request either (I have looked using wireshark). Below is my source code:

function loadTwitterFeed() {
    var dataSource = new kendo.data.DataSource({
        transport: {
            read: {
                url: "http://api.twitter.com/1/statuses/user_timeline.json", // the remove service url
                dataType: "jsonp" // JSONP (JSON with padding) is required for cross-domain AJAX
            },
            parameterMap: function(options) {
                return {
                    screen_name: "USER_NAME",
                    count: 10,
                    since_id: options.since_id, //additional parameters sent to the remote service
                    max_id: options.max_id //additional parameters sent to the remove service
                };
            }
        }
    });
 
    $("#twitter-feed").kendoMobileListView({
        dataSource: dataSource,
        template: $("#twitter-template").text(),
        appendOnRefresh: true,
        pullToRefresh: true,
        //addition parameters which will be passed to the DataSource's read method
        pullParameters: function(item) { //pass first data item of the ListView
            return {
                since_id: item.id_str
            };
        },
        endlessScroll: true,
        //addition parameters which will be passed to the DataSource's next method
        endlessScrollParameters: function(firstOrigin) {
            if (firstOrigin) {
                return {
                    max_id: firstOrigin.id_str
                };
            }
        }
    });
}

It is similar to the twitter search demo but I have removed the serverPaging from the code as Twitter is getting rid of pages soon and is instead only using max_id and since_id. I've searched the documentation with no luck, it should work!

Does anybody know what's wrong?

Thanks,
Thomas

Link to twitter page on user_timeline: https://dev.twitter.com/docs/api/1/get/statuses/user_timeline

Example Json request which works when copied and pasted into browser (just replace USER_NAME with valid one): http://api.twitter.com/1/statuses/user_timeline.json?screen_name=USER_NAME&count=10
Thomas
Top achievements
Rank 1
 asked on 23 Oct 2012
0 answers
103 views
I am trying this codeto add the dropdown in the template:-

 $( "#grdTrading" ).kendoGrid( {
            dataSource: grddataSource,   // static data source
            scrollable: true,
            height: 180,
            columns: [
           "Code", "Level",
        {
            field: "Flag",
            template: "#=Flag.Name#",
            width: "150px",
            editor: TradingDropDownEditor
        }

        ],
            editable: true,
            sortable: true,
            selectable: true

        } );

function TradingDropDownEditor( container, options )
        {

            $( '<input data-text-field="Name" data-value-field="FlagID" id="Category" data-bind="value:' + options.field + '"/>' ).appendTo( container ).kendoDropDownList( {
                autoBind: false,
                change: function ( e )
                {

                    var grid = $( "#grdTrading" ).data( "kendoGrid" );
                    var dataItem = null;
                    grid.select().each( function ( e )
                    {
                        dataItem = grid.dataItem( $( this ) );
                        var id = dataItem.Code;
                        var DropdownText = dataItem.Flag.Name;
                        alert( DropdownText );
                        if ( id == "ABC" && DropdownText == "No" )
                        {

                        //Adding dropdown to the second grid
                            AssociatedData = [{ text: "No", value: "No"}];

                                $( "#grdAssociated" ).find( "#ddlAssoPort" ).kendoDropDownList( {
                                dataTextField: "text",
                                dataValueField: "value",
                                autoBind: true,
                                enable: false,
                                dataSource: AssociatedData

                            } );

                        }
                        else
                        {
                           return;
                        }

                                        

                    } );

                },

                dataSource: ddlFlag

            } );

        }

I am able to add the dropdown but on change event if I select the dropdown it vanishes the the dropdown in the other grid.
Please look at the code and please help..!

Abhimanyu
Top achievements
Rank 1
 asked on 23 Oct 2012
2 answers
202 views
Hi,

I have a radial gauge and it is working fine, but as soon as i add the following it goes completely blank when i run the code.

labels: {
                                position: labelPosition || "inside"
                            },
If i remove this code it works again.
Any ideas?

Here is the complete function for reference.

        function createGauges() {
            var theme = $(document).data("kendoSkin") || "default";
//                        value = $("#gauge-value").val();


                    $("#Lgauge").kendoRadialGauge({
                        theme: theme,


                        pointer: {
                            value: 80
                        },


                        scale: {
                            majorUnit: 10,
                            minorUnit: 2,
                            min: 0,
                            max: 100,
                            labels: {
                                position: labelPosition || "inside"
                            },
                       
                            ranges: [
                                {
                                    from: 0,
                                    to: 35,
                                    color: "red"
                                }, {
                                    from: 35,
                                    to: 70,
                                    color: "yellow"
                                }, {
                                    from: 70,
                                    to: 100,
                                    color: "green"
                                }
                            ]
                        }
                    });
                }

And here is the only styling i apply to the div :

            div#gaugeLCon {
                    background: transparent url("../images/gauge-container-partial.png") no-repeat 50% 50%;
                    width: 386px;
                    height: 386px;
                    text-align: center;
                    margin: 0 0 30px 50px;
                    }                  
          
             div#Lgauge
          {
              
              width: 330px;
              height: 310px;  
              text-align: center;
              margin: 0 auto 0;
          }

Morne
Top achievements
Rank 1
 answered on 23 Oct 2012
0 answers
74 views
In kendo ui how can we check user availability  in kendo ui grid? is it possible in it? if possible than please reply me so i will make in changes  in my code because i want to check user availability in my module.
Jaymin
Top achievements
Rank 1
 asked on 23 Oct 2012
1 answer
113 views

Hi,
I am using the kendo grid with custom popup edit template and everything works fine until i use text area inside the template.
any html after the textare does not show in the edit popup template and hence i cannot see the update and cancel buttons or any other field that i declare after the textarea

Thankyou
Rakesh
Top achievements
Rank 1
 answered on 23 Oct 2012
6 answers
322 views

Hi there, for some reason I can't force bubble chart to show legend, at the same time I'm able to see category name in the tooltip, could you please explain why, thanks.

        $("#Chart1").kendoChart({
                title: {
                    text: "Chart"
                },
                legend: {
                    visible: true,
                    position: "bottom"
                },
                dataSource: @{@Html.Raw(id)}ChartDataSource1,
                seriesDefaults: {
                    type: "bubble"
                },
                seriesColors: ["#004D5C", "#FF8700", "#38A660", "#E5D843", "#80BF34"],
                series:
                    [{
                        type: "bubble",
                        categoryField: "Field1",
                        xField: "Field2",
                        yField: "Field3",
                        sizeField: "Size",
                        colorField: "Color",
                        maxSize: 35,
                        minSize: 3,
                        visibleInLegendField: "true",
                        tooltip: {
                            visible: true,
                            format: "{2} {3}"
                        }

                    }
                    ]
               ,
                xAxis: {
                    //max: 1000,
                    labels: {
                        format: "{0}"
                    }
                },
                yAxis: {
                    //min: 80,
                    labels: {
                        format: "{0}"
                    }
                },
        });

Iliana Dyankova
Telerik team
 answered on 23 Oct 2012
2 answers
2.3K+ views
To: Those familiar with Kendo UI installation,

A VS 2010 application using the Kendo UI ASP.NET MVC trial version controls was created and works ok.  The license for Kendo UI has been purchased and the files have been downloaded and installed.   The trial version CSS and JS files have the same time stamp and file sizes.   

Telerik's installation instructions are:

1.) Download Kendo UI.
2.) Copy Kendo UI CSS and Javascript resources to your project.
3.) Configure your page to use Kendo UI scripts and skins
4.) You are ready to use Kendo UI.

Is there anything that needs to be done to upgrade the Kendo UI trial version to the purchased version?

Thanks for your help

Peter


Avitot
Top achievements
Rank 1
 answered on 23 Oct 2012
1 answer
83 views
Please see the JS fiddle here: http://jsfiddle.net/zWjaD/6/
How come the update to the name property is not being reflected on the UI?
Atanas Korchev
Telerik team
 answered on 23 Oct 2012
0 answers
182 views
I have 2 checkboxes/RadioButtons in a grid, what i want is only one of them can be checked. I followed some sample from other thread to write, but no luck, I am still not able to get value of that check box. This is how I access the checkbox
$("#divGrid").data("kendoGrid").table[0].rows[0].
 cells[0].children.ARadio;
    
   

And this is my grid looks like
$("#divGrid").kendoGrid({
    dataSource: { data: ds, pageSize: 5 }
    , pageable: { input: true, numeric: false }
    , selectable: true
    , sortable: true
    , scrollable: false
, columns: [{ title: "A", template: '<input type="checkbox" id="ARadio" ARadio="#= RequestId #"/>' },
            { title: "Requestor Name", field: "RequestorName", template: '<nobr><label style="width:120px;">#=RequestorName#</label></nobr>', width: 150 },
            { title: "Request Type", field: "RequestType" },
            { title: "Business Group", field: "BusinessSilo", template: '<nobr><label style="width:120px;">#=BusinessSilo#</label></nobr>', width: 120 },
            { title: "Access Level", field: "AccessLevel" },
            { title: "Access Justification", field: "AccessJustification", template: '<nobr><label style="width:120px;">#=AccessJustification#</label></nobr>', width: 150 },
            { title: "Date Requested", field: "DateRequested" },
            { title: "Date of Expiry", field: "ExpirationDate"}]
});

Please help me out, I've been stucking on this for quite a while.
Aden
Top achievements
Rank 1
 asked on 23 Oct 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
Drag and Drop
Application
Map
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
Chat
MultiColumnComboBox
Dialog
DateRangePicker
Checkbox
Timeline
Drawer
DateInput
ProgressBar
MediaPlayer
ImageEditor
TextBox
OrgChart
Accessibility
Effects
PivotGridV2
Licensing
ScrollView
Switch
TextArea
BulletChart
QRCode
ResponsivePanel
Wizard
CheckBoxGroup
Localization
Barcode
Breadcrumb
Collapsible
MultiViewCalendar
Touch
RadioButton
Stepper
Card
ExpansionPanel
Rating
RadioGroup
Badge
Captcha
Heatmap
AppBar
Loader
Security
TaskBoard
Popover
DockManager
TimePicker
FloatingActionButton
CircularGauge
ColorGradient
ColorPalette
DropDownButton
TimeDurationPicker
ToggleButton
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
SmartPasteButton
PromptBox
SegmentedControl
+? more
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?