Telerik Forums
Kendo UI for jQuery Forum
0 answers
83 views
Hi,

Is it possible to use scrollview with form's control like input type=text ?
I'm able to use textbox with scrollview but I am unable to type anything in it? Is scrolling be only use with images?

Thanks,
Mangesh
Mangesh
Top achievements
Rank 1
 asked on 03 Apr 2012
3 answers
804 views
I have a grid where I am trying to use the filter feature however I always get an error
Uncaught TypeError: Cannot call method 'toLowerCase' of undefined 
I have tried using all of the scripts just to test that I am not missing a script however I still get the same error

I don't think I am doing anything wrong with my code.

I have a row template that looks like

<script id="rowTemplate" type="text/x-kendo-tmpl">
                <tr data-id="${ Id}">
                    <td>
                        ${ Description}
                    </td>
                    
                </tr>
</script>

My table layout looks like
<table id="mytable">
     <thead>
         <tr>
             <th>
                 Description
             </th>
              
         </tr>
     </thead>
     <tbody>
         <tr>
             <td colspan="1">
             </td>
         </tr>
     </tbody>
 </table>

I am setting up the grid like 
$("#mytable").kendoGrid({
           dataSource: {
               transport: {
                   read: "/api/details/get"
               },
               pageSize: 10
           },
           height: 250,
           filterable: true,
           sortable: true,
           selectable: "row",
           change: onChange,
           pageable: true,
           editable: "popup",
           toolbar: kendo.template($("#template").html()),
           rowTemplate: kendo.template($("#rowTemplate").html())
       });
   });

Can anyone let me know what I am doing wrong?
Khushali
Top achievements
Rank 1
 answered on 03 Apr 2012
1 answer
97 views
Give the following definition
read: {
                url: _webservicePath + "/GetMyFoods",
                type: "POST",
                dataType: "json",
                contentType: "application/json; charset=utf-8",
                data: {
                    userid: getCurrentUserID(),
                    sortOrder: getSortOrder()
                }
            },

Why when I call read again on the DS doesn't it re-evaluate the "sortOrder"?...how do I get it to do that? :)
Atanas Korchev
Telerik team
 answered on 03 Apr 2012
1 answer
88 views
Hy 

I'm still using the old Kendo UI version, so this isn't related to the newest version (maybe it is, but I haven't testet it). 

I have created a TabStrip where the first tab is a Link to another page, the second tab is the tab with the content. 
I have set the .k-state-active class on the second tab (because first one cannot be active). 

Either kendo Ui now isn't able to display the second tab (it still has set display: none on the selected tab). 

I've created a jsfiddle version where you can see the error (in the second tab is a text field, that isn't displayed by default)
Example

If this is fixed in the new version i would like to upgrade, but either I cannot upgrade to the newest version because this one requires jquery 1.7 (and we are using jquery mobile that doesn't support jquery 1.7 yet). Or is there a way how I can use kendo UI with an older jquery verison?

Thank you Micha
Kamen Bundev
Telerik team
 answered on 03 Apr 2012
1 answer
461 views
Starting yesterday I am getting an HTTP error 403 when referencing scripts through your CDN url. For example this is the CDN for one of the scripts that I am using...

http://cdn.kendostatic.com/2012.1.327/js/kendo.core.min.js

Error message returned from Cloudfront...

HTTP/1.0 403 Forbidden

x-amz-request-id: D70A9E7943FF134A

x-amz-id-2: Teb1FFe9UYJ66BlEHbEQOsuo7S3GfM+jSjSq5xNBgJi8FITzAWh6LmKK3Xs1Htza

Content-Type: application/xml

Date: Mon, 02 Apr 2012 15:31:46 GMT

Server: AmazonS3

Age: 43

Content-Length: 231

X-Cache: Error from cloudfront

X-Amz-Cf-Id: pdppFTS3_Rgc5EE8_VBWRUgwknrArJME_TTz7qfnEtBPl0jxryaIwQ==

Via: 1.0 7e4ecdff0078259d2c1827ec3336b278.cloudfront.net (CloudFront)

Connection: close

<?xml version="1.0" encoding="UTF-8"?>

<Error><Code>AccessDenied</Code><Message>Access Denied</Message><RequestId>D70A9E7943FF134A</RequestId><HostId>Teb1FFe9UYJ66BlEHbEQOsuo7S3GfM+jSjSq5xNBgJi8FITzAWh6LmKK3Xs1Htza</HostId></Error>


Kamen Bundev
Telerik team
 answered on 03 Apr 2012
2 answers
105 views
I think you have a bug in the slider events demo... http://demos.kendoui.com/web/slider/events.html

The first slider reports change event when sliding and slide event at the end of sliding - it should be vice versa.

James
Top achievements
Rank 1
 answered on 03 Apr 2012
3 answers
1.1K+ views
There is probably something I'm missing here, but I can't find a way to clear the autocomplete and have it refresh the datasource.  I have tried making a button with a click event that does it, but I'm not sure what to put in the click event.  Here is a jsfiddle.  Would you please show me how to clear the search result and refresh the grid to bring it back to all results?

http://jsfiddle.net/dsapala/5f3x4/
Georgi Krustev
Telerik team
 answered on 03 Apr 2012
0 answers
90 views
Hello everybody, 

I have a chart with the next information

data: [{c:"P",m:"E",p:22},{c:"S",m:"E",p:40},{c:"P",m:"S",p:46},{c:"S",m:"S",p:32}]

and i want to have two columns on the series axis: 
http://demos.kendoui.com/dataviz/bar-charts/index.html 

(based on the example)
categoriesField: m

and the series
is 
[{name: c, data: 22}]

i have heard that is grouping the datasource but it didnt works

Manuel de Jesus
Top achievements
Rank 1
 asked on 03 Apr 2012
2 answers
235 views
I am using a kendo window to input information and I am also trying to use the validation.

The validation message gets wrapped. Is it possible to extend the validation message so it overflows the windows border? I really would like it to stay on a single line without the wrapping.

Any suggestions would be appreciated.

Thank you  

Shane P
Top achievements
Rank 1
 answered on 02 Apr 2012
0 answers
86 views
Hi everyone

Someone can help me doing a count () from remote data (All rows that I need)?

I want use a shared data source in a column chart that show the count by category and in a grid show the details.


Please
Regards,


M.
Monique
Top achievements
Rank 1
 asked on 02 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)
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
MultiColumnComboBox
Chat
DateRangePicker
Dialog
Checkbox
Timeline
Drawer
DateInput
ProgressBar
MediaPlayer
ImageEditor
TextBox
OrgChart
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
TaskBoard
Popover
DockManager
FloatingActionButton
CircularGauge
ColorGradient
ColorPalette
DropDownButton
TimeDurationPicker
ToggleButton
TimePicker
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
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?