Telerik Forums
Kendo UI for jQuery Forum
1 answer
157 views
Hi,

From the Kendo UI web page I can create a bookmarklet (http://demos.kendoui.com/themebuilder/index.html).
I then go in my page and launch the bookmarklet and I receive no error message. It seems that Theme Builder is finding Kendo controls in my page.
If I open the Theme Builder with my own page and change some values, my Widgets on the page doesn't change.
There is certainly a piece of code missing in my page to allows this.

I want to do the same as the Kendo UI page but with my own page.
Someone already did this? 
Thanks.
Alex Gyoshev
Telerik team
 answered on 16 Apr 2012
1 answer
358 views
Title says it.  Bonus points if I can specify different tooltips (i.e on the pointer - explaining to the user where the value came from, on the ranges - explaining to the user why the range goals are as they are, etc).
Iliana Dyankova
Telerik team
 answered on 16 Apr 2012
1 answer
257 views
In Chrome when I try to print the Demo Pie Chart, not all of the color is filled in and it looks really bad. I want to use the KendoUI pie chart but my users need to be able to print it or capture it into a PDF file using WebGrabber. Is there a property that is needed to be set to allow clean printing? See attached Gif for additional details.
Alexander Valchev
Telerik team
 answered on 16 Apr 2012
1 answer
91 views

Javascript Dependencies for Grid. Item 15. kendo.pageable.js (if paging is enabled) substitute on kendo.pager.js

http://www.kendoui.com/documentation/javascript-dependencies.aspx

Atanas Korchev
Telerik team
 answered on 16 Apr 2012
1 answer
130 views
I first purchased KendoUI and then about a month ago upgraded to the Ultimate Collection.  I would like to understand more Telerik's view as to how KendoUI fits in with the ASP.net and MVC3 Telerik rad controls, and whether  it is appropriate to mix Kendo UI controls with Telerik ASP.net or MVC3 projects, and if so, when is it best to do so?

Alex Gyoshev
Telerik team
 answered on 16 Apr 2012
1 answer
170 views
Apologies if this is a silly question, but one concern I have about KendoUI websites (and client side binding generally) is that if a grid binds client side to json data, then the entire data source (or at least the entire results of the query returning Json) is visible to anyone in the web page that is returned, simply by doing view source for that page.

That may be ok for publicly available data, such as Twitter feeds, or movie databases, or products from a company website (where all the products can be viewed), but for financial, social or medical applications where users may have personal data, it would violate security and data protection for the entire query result set to be visible in a web page via json. 

So please would Telerik and or the KendoUI tema comment on when you feel that client binding is acceptable and when it is not?
(Comments from anyone else re this are welcome too!)

Many thanks

Patrick
Alex Gyoshev
Telerik team
 answered on 16 Apr 2012
15 answers
2.6K+ views
Hi,

I am wondering if you will support enabling/disabling columns in the grid on the flight. I'm thinking of something similar to this (see attached image).

See the demo for full interaction. 

/Jacob
Dimo
Telerik team
 answered on 16 Apr 2012
1 answer
116 views
Hi,
 i have written a code for taking json data from a php and putting to listview ,it works great in localhost ,
when i put the php file in a webserver and called in javascript it showing eeror and not getting data.


this method i have  used 
 var dataSource = new kendo.data.DataSource({
                transport: {
                    read: {
                     
                       //url: "userchk.php",    //this works in localhost  
                       url: "http://example.com/web/userchk.php",  this is not working 
                       
                        dataType: "json",
                        data: { 
                            q: "javascript"
                        }
                    }
                },

first url data is geting in localhost and works great, second url is not working(but data showing  if we run the url in a browser)

it show Error

XMLHttpRequest cannot load http://example.com/web/userchk.php?q=javascript. Origin http://localhost is not allowed by Access-Control-Allow-Origin.

waiting for a good response

Sajid
Top achievements
Rank 1
 answered on 16 Apr 2012
9 answers
2.5K+ views
I am having an issue where I have a long running query and I see we get results in Fiddler, but the loading gif disappears in the Grid before the results are returned.  My assumption is that there is a timeout setting, but I see no documentation about it.  Also, when this happens I am unable to query the datasource.  Any help would be appreciated.

Wade
William
Top achievements
Rank 1
 answered on 16 Apr 2012
3 answers
240 views
I'm unsure of how to get the data grouped properly for a list view.  I think the problem is in my datasource definition although it may also be a problem with my list binding.  Any tips or suggestions for my data source are greatly appreciated.

I'm sending data in the following format from a webservice I have written:

{
  "count" : 3,
  "queryData" : "users",
  "results" : [
    { "length" : 2, "result" : "1A" },
    { "length" : 2, "result" : "9F" },
    { "length" : 3, "result" : "F03" }
  ]
}

And my datasource formatted as so:

var ds = new kendo.data.DataSource({
  transport: {
    read: {
      url: "http://localhost:12392/api/process",
      dataType: "jsonp",
      data: {
        queryData: 'users'
      }
    }
  },
  schema: {
    data: function(data) { return data.results },
    total: function(data) { return data.count },
    model: {
      fields: {
        length: {
          type: 'number'
        },
        result: {
          type: 'string'
        }
      }
    },
    group: { field: 'length' }
  }
});

Now I want my mobile list view to be grouped by length as the datasource is setup for. My mobile list view is not grouped. This grouping is not configurable by the user nor intended to be.  I just want my list grouped on length.

Fires on view render:

function resultsBind() {
    // Old local data version with correct grouping
    // $("#grouped-listview").kendoMobileListView({
    //           dataSource: kendo.data.DataSource.create({data: groupedData, group: "length" }),
    //           template: "#= result #",
    //           headerTemplate: "Group ${value}"
    //       });
    $("#grouped-listview").kendoMobileListView({
        dataSource: ds,
        template: "#= result #",
        headerTemplate: "Group ${value}"
    });
}
Ryan
Top achievements
Rank 1
 answered on 14 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
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
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?