Telerik Forums
Kendo UI for jQuery Forum
0 answers
178 views
I need a grid with a Checkbox column to select/deselect multiple rows. I have tried the column template by doing the following
{ field: 'IsSelected', title: 'Select', type: "boolean", template: '<input class=selector type=checkbox />', width: '50px' }

But, how do I bind the event of checking the checkbox select/deselect the row? I also need the "Select All" checkbox in the header which would select all the rows.
Suresh
Top achievements
Rank 1
 asked on 17 May 2012
0 answers
113 views
Hi,

When binding to the grid change event, if I change any property on the data item using the set method, the grid selection no longer works. Please see http://jsfiddle.net/Z46Xc/1/ . Is this not the correct way to do this? In reality, the sub collection is bound to another grid and loaded on selection of parent row.

Thanks for your help.
Omar Beaconsfield
Top achievements
Rank 1
 asked on 17 May 2012
1 answer
235 views
hello

I have a datepicker and a grid that when I select a date from the datepicker take in a date field, the date picker to select the date
someone knows how to do that in the grid?
would like to modify the datasource.
currently taking data from a file filled with asp
and the date is the only field I want to take of the page.
regards!!
Ricardo
Top achievements
Rank 1
 answered on 17 May 2012
3 answers
172 views
I need an onLoaded event for the Kendo UI window widget. While the content loads asynchronously I want to display something like "Loading..." or a spinner.
Iliana Dyankova
Telerik team
 answered on 17 May 2012
0 answers
78 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
808 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
101 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
103 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
126 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
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?