Telerik Forums
Kendo UI for jQuery Forum
0 answers
84 views
Okay, this is a slightly complicated scenario, but will be common in my team's project. Basically, I want to use MVVM and the new declarative style to set up a plugin that wraps around DropDownList. Internally, the plugin uses a DataSource to populate the DropDownList with all its available options. The plugin will be used inside pages and other plugins which will also use MVVM to set its default value using another DataSource

Now my question is, is it even possible to do this in the new declarative style? If so, then how? In particular, how do I make it so that my plugin can hookup to the outer MVVM's settings for its value?

Any help would be greatly appreciated. 
Joshua
Top achievements
Rank 1
 asked on 18 Apr 2012
1 answer
231 views
Hi,
I am dynamically building a ul and then applying a kendoTreeView() on it everything is working prefectly fine but I am struggling to sore the tree as there is no method provided and I can't apply any logic as i am building very complicated ul.
My code as below:
function BuildTree() {
    $(xmlDoc.getElementsByTagName("Item")).each(function () {
 
        var thisItem = $(this);
        var list = " "; var list1 = " ";
        $(parentIDFields).each(function (index, item) {
 
            if (thisItem.attr(item) != null && thisItem.attr(descriptionCol) != null) {
                if (index == 0) {
                    list += "<li id=" + thisItem.attr("ID") + " onclick=sendHTML(" + thisItem.attr("ID") + ");>" + thisItem.attr(item);
                    list1 += "</li>";
                }
                else {
                    list += "<ul><li id=" + thisItem.attr("ID") + " onclick=sendHTML(" + thisItem.attr("ID") + ");>" + thisItem.attr(item);
                    list1 += "</li></ul>";
                }
            }
        });       
        $("#treeView").append(list + "<ul><li id=" + thisItem.attr("ID") + ">" + thisItem.attr(descriptionCol) + " </li></ul>" + list1);
    });
 
    $(document).ready(function () {
        $("#treeView").kendoTreeView();
    });
 
}

can you please show any pointers towards solution.
Alex Gyoshev
Telerik team
 answered on 18 Apr 2012
0 answers
105 views
Canceled.
DMC Helpdesk
Top achievements
Rank 1
 asked on 18 Apr 2012
1 answer
305 views
I want to bind the combo box to a remote rest service which takes a partial name as query string parameter. Following is the code I have.

$("#combobox").kendoComboBox({
                dataTextField: "Description",
                dataValueField: "Code",
                filter: "contains",
                minLength: 3,
                autoBind: false,
                dataSource: {
                    type: "json",
                    serverFiltering: true,
                    transport: {
                        read: {
                            url: serviceUrl + "HpCodes",
                            contentType: "application/json; charset=utf-8",
                            dataType: "json",
                            data: {
                                partialName:
                                    function () {
                                    return $("#combobox").val();
                                }
                            }
                        }
                    }
                }
            });

So I was hoping when uses types in 3 chars it would emit a call to the service as <serviceUrl>/HpCodes?partialName=tes
but it doesn't seem to be doing that instead it sends the following request 
GET <serviceUrl>/HpCodes?partialName=&filter%5Blogic%5D=and&filter%5Bfilters%5D%5B0%5D%5Bfield%5D=Description&filter%5Bfilters%5D%5B0%5D%5Boperator%5D=contains&filter%5Bfilters%5D%5B0%5D%5Bvalue%5D=tes HTTP/1.1
This looks like a oData query annd in my wcf service the partialName is empty string.

Another thing I noticed was that even though I set the minLength to 3 if I click the drop down button with out entering anything the the input area it still calls the service.
Georgi Krustev
Telerik team
 answered on 18 Apr 2012
0 answers
122 views
Below Pie Chart i trying do with Custom data. But its not Showing

var d= jQuery.parseJSON('[{"XAXIS":"HERMES","COUNT":"51"},{"XAXIS":"J R T CUMBUM","COUNT":"69"},{"XAXIS":"Krishnamoorthy","COUNT":"70"},{"XAXIS":"RED BUS","COUNT":"150"}]');  
  $("#ChartDiv").kendoChart({
        legend: {
            visible:true,
            position:"right"
        },
        seriesDefault: {
              type: "pie"
       },
       dataSource:{data:d},
       series: [{                      
                field:"COUNT",
                type: "pie",
                categoryField:"XAXIS",
                labels:{
                  visible: true,                   
                  template:"${value}"
                }
              }],
      tooltip:
      {
        visible:true,      
        template:"<div style='white-space: normal; max-width: 120px;'>${category} - ${value}</div>"
      },
      categoryAxis:{field: "XAXIS"}
  });

<div id="ChartDiv" style="width: 900px; height: 500px; display: inline-block;">
</div>
Anand
Top achievements
Rank 1
 asked on 18 Apr 2012
1 answer
254 views
In odata __next is specified to let the datasource know how to request more results.  I'm using hand rolled json and my listview isn't showing the loadmore button.  What do I need to do to let it know it should request the same URL but increment the page number?

var ds = new kendo.data.DataSource({
  transport: {
    read: {
      url: "http://localhost:3000/api/anagram",
      dataType: "jsonp",
      data: {
        format: 'html'
      }
    },
    parameterMap: function(options) {
      if (options.filter && options.filter.filters.length > 0)
        return {
          rack: options.filter.filters[0].value.replace(/\?/g,'-'),
          format: 'html',
          limit: options.pageSize,
          page: options.page
        };
      return options;
    }
  },
  group: 'length',
  pageSize: 10,
  page: 1,
  sort: {field: 'w', dir: 'asc'},
  filter: { field: 'rack', operator: 'eq', value: 'z' },
  serverFiltering: true,
  serverPaging: true,
  serverGrouping: true,
  serverSorting: true,
  error: function(e){
    alert(e);
    console.log(e);
  },
  change: function(e) {
    console.log('Data changed: ' + this.total());
  },
  schema: {
    groups: 'groups',
    total: 'count',
    model: {
      fields: {
        length: {
          type: 'number'
        },
        w: {
          type: 'string'
        },
        f: {
          type: 'string'
        }
      }
    }
  }
});
Georgi Krustev
Telerik team
 answered on 18 Apr 2012
2 answers
206 views
Hi,
My json rest service omits fields when the values is null and looks like GRID can't handle such datasources.

Number is not null
{
{
    "id":"0422842A222780",
    "number":"0422842A222780"
  }
Number is null
{
    "id":"0422842A222780"
  }
model:{
    id:"id",
    fields:{
        id:{type:"string", editable:false},
        number:{type:"string", editable:false, nullable:true},
    }
}
As a result I see empty grid. When I remove this field from displaying all works fine Is there any solution?
Yaroslav
Top achievements
Rank 1
 answered on 18 Apr 2012
1 answer
129 views
I am wondering if telerik is planning on developing any kind of abrstraction layer for accessing indexed db architecture.

Quite annoyingly the W3C has killed WebSQL and indexed db is such a new standard that every browser that does support it (currently only 2 that I am aware of Chrom and FireFox) have there own way of managing the db and from what I am seeing IE 10- will have alltogetehr a different way to manage its indexed db implimentation.

This has long been a sore spot for me with open source development that standards are often not only times implimented accross differently accross platforms, but from version to version you can have entire subsets of functionality be cycled out (especially on new and rapidly evolving items like indexed db..  It make building stable applications that utilize these technologies exceedingly difficult.


I have not only a desire but a genuine need to see data storage for certain application fucntions occur on the client side but I cant do that without some kind of stability in the evolving landscape of the applications platform. I DEFINATELY dont desire to develope three seperate constantly shifting approaches to implimenting a client side data storage solution.  Does Teelrik have any plans to impliment some kind of client side data storage abstraction layer that woudl allow you to utilize client side storage like indexed db with its controls sets?

Georgi Krustev
Telerik team
 answered on 18 Apr 2012
1 answer
90 views
I am getting the following error when binding:

SCRIPT5007: Unable to get value of the property 'length': object is null or undefined
kendo.custom.min.js, line 12 character 1304



When I call this line:
kendo.bind($("#content"), viewModel);

Any ideas?
Petyo
Telerik team
 answered on 18 Apr 2012
1 answer
92 views
Hey there,

While working on a CRUD demo using OpenAccess as Odata producer and KendoUI I'm facing with an issue with the command columns when virtual scrolling is enabled.
Virtual scrolling is working as expected in Firefox without the command columns: http://openaccess.spirit.de/.

Once the comand columns are enabled http://openaccess.spirit.de/?ReadWrite=1 it's no longer possible to use the scroll bar. 

My guess is that the larger row height is causing this, but I haven't found time yet to dig deeper into it.

Thanks,

Rainer
Rosen
Telerik team
 answered on 18 Apr 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)
SPA
Filter
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
OrgChart
TextBox
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
Popover
DockManager
FloatingActionButton
TaskBoard
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
TimePicker
DateTimePicker
RadialGauge
ArcGauge
+? more
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?