Telerik Forums
Kendo UI for jQuery Forum
0 answers
120 views
hi Kamen Bundev  


data-transition is not working when using external html page in anchor tag:
<a data-icon="cart" data-rel="external" href="test.html" data-transition="slide"/>

thanks 
Nitin
Top achievements
Rank 1
 asked on 23 Jun 2012
0 answers
61 views
Hello,

I am very new in kendo web. I am facing problem when i have trying to populate multiple grid with tree view.
i have created a tree view with 10-12 nodes. now i need to call different grid on each node.
please help or suggest an example.

my code is here
function buildEntitiesTree()
        {
            $("#entityTreeView").remove();
            var urlFetchEntityTree=baseUrl + 'index.php/home/fetchEntityRecords/';
            $.getJSON(urlFetchEntityTree,function(jsonEntityTree){
            
            function onEntitySelect(e) {
                var selectedId = $(e.node).find(".entity-item-id").val();
                $("#hdnSelectedEntTreeId").val(selectedId);
                var n = $("#hdnSelectedEntTreeId").val();
          
                  if (n == 3) {
                  EnquiryEditgrid(); ---- I need to call Grid 1
                  }
                  else if (n == 14) {
                  Ordersgrid();  I need to call Grid 2
                  }
                   else if (n == 11) {
                }
                I need to call Grid 3
                   
             }
  Please help what code i should write to call the different grids.

Regards
Divya Jha
Divya
Top achievements
Rank 1
 asked on 23 Jun 2012
0 answers
184 views
Hi,
I work on the kendo grid.
dataBound: function (e) {
            this.element.find("#security").each(function (sender) {
                //set current row here.
                currentRow[0].removeClass("securityOff").addClass("securityOn");
            });  
       }

How do I refer to current row from index such as 0,1,2
Weera
Top achievements
Rank 1
 asked on 23 Jun 2012
0 answers
192 views
Hello, 

     i want to add tooltip text on action buttons of kendo window (e.g. close , refresh, minimize, maximize etc) , can anyone help me in this ? 

     

     

Pushkar
Top achievements
Rank 1
 asked on 23 Jun 2012
2 answers
196 views
I want to implement a generic form field binding with kendo MVVM. This means that my model shouldn't contain any hard-wired field IDs in its bindings, instead it should be able to bind to any form rendered by the server. Here is what I've got so far:

var genericModel = {};
function bindField($field) {
    var viewModel = kendo.observable({
        value: "John Doe"
    });
    $field.attr('data-bind', 'value: value');
    kendo.bind($field, viewModel);
   genericModel[$field.attr('id')] = viewModel;
}
 
 
$(function () {
    var $inputs = $('input').not('.datetimepicker, .autocomplete');
    $inputs.each(function () {
        bindField($(this));
    });
});

This code iterates through all input fields, attaches the necessary data-bind attributes to them and sets up the model binding for each field. Finally all field objects are stored in the global genericModel object.

Unfortunately, this approach doesn't seem to work - changes aren't updated in both directions. I also tried the "nested binding" approach mentioned in the docs but had no luck either. I'm using KendoUI v2012.2.531

Any idea?

Thanks,

Franz
Peter Bulloch
Top achievements
Rank 1
 answered on 22 Jun 2012
0 answers
80 views
I have several people editing the same grid, and I would like their updates to push out to the everyone else as they save the grid.  Do you support server push in updates?

This is a very common pattern these days with twitter feeds and such.
Alden
Top achievements
Rank 1
 asked on 22 Jun 2012
1 answer
84 views
Am I blind or do your forums not have search functionality?  This would be very helpful.  I'm using google's site: search to search your forums, but have no confidence that google is truly up to date.

Thanks,
Jeff
Dimitar
Telerik team
 answered on 22 Jun 2012
2 answers
135 views
Not sure if this should go in the Beta Forum or here, but just downloaded the 2Q2012 beta, and would like to try out the SplitView.
I did not see anything that looked related in the Examples folder, where should I look for more information on how to use this new feature?

Thanks
Jordan
Top achievements
Rank 1
 answered on 22 Jun 2012
1 answer
253 views
I have a problem. I want to change dataSource of my Autocomplete on the fly. Here is the problem :

I have a dropdown which has "ItemID" and "ItemName" for its element.

When i select ItemID on the dropdown, i want my autocomplete to select "ItemID" data from the server for its dataSource.

And when i select ItemName on the dropdown, i want  my autocomplete to select "ItemName" data from the server for its dataSource.

Please help me..
Jesse
Top achievements
Rank 2
 answered on 22 Jun 2012
2 answers
177 views
I'm trying to change the Editors textarea cols property using the following

 var onCollapse = function(e) {
            $('#editor').attr("cols", 200);
            var editor = $("#editor").data("kendoEditor");
            editor.update();
        };

 $('#Splitter').kendoSplitter({
            collapse: onCollapse,
            panes: [
                { size: "300px", min: "100px", max: "300px", collapsible: true},
                { size:  "400px" }
            ]
        });

I know the event is firing and that the value is getting changed, but the editor size stays the same. Also I have try changing the editors css width property to no avail. Thanks
Jesse
Top achievements
Rank 2
 answered on 22 Jun 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?