Telerik Forums
Kendo UI for jQuery Forum
5 answers
296 views
I have a menu on my footer that is set to open above the footer when opened:  $("#footer").kendoMenu({ direction: "top left" });

I can see the menu opening fine but the part of the menu that goes above the footer is not visible and all you can see is the main content of the page.

The footer is positioned absolutely. You would think this is just a simple z-index issue but I have tried adding the following styles to all parent elements of the menu (including the footer) to no avail:

z-index: 2147483647;
overflow: visible; zoom: 1; I should add that it works fine in IE 10 and Chrome.

Karl
Top achievements
Rank 1
 answered on 17 Jan 2013
1 answer
131 views
Hi,
Is there a roadmap for rename functionallity of folders and files in the image browser?

Regards,
Mattias
Dimo
Telerik team
 answered on 17 Jan 2013
1 answer
131 views
Hi

After some hours of debugging I have now realised that it is not possible to reference controls from another view until the view has been been shown at least once. This presents a problem for me as I need to extract data from a view which may or may not have been initialised. What can I call to force the all the items in the view to be generated so that I can at least access the controls programmatically even if the user has never browsed to that view?

Many thanks
Michael
Alexander Valchev
Telerik team
 answered on 17 Jan 2013
5 answers
357 views
Hi,

I've some problems to make the endless scroll work with a local sql lite db (edit: in fact it's not sql lite, but web sql, but at the end the problem is the same ;-)).

The first 10 items are well loaded, but the "read: " function is not called when I scroll down to the last item of the view. I think I'm missing something...

I don't think I need the transport->parameterMap nor the datasource->schema, but maybe I'm wrong.

Thanks for your help!

Here is my view:
<!DOCTYPE html>
<html>
<head>
    <title>Activities</title>
</head>
<body>  
    <div data-role="view" data-layout="default" data-init="initTask">
        <h1>Tasks</h1>
        <ul id="tasks"></ul>
    </div>
     
    <script>
        var ds = new kendo.data.DataSource({
                pageSize: 10,
                serverPaging: true,
                transport: {
                    read: function(options) {
                            writeLog('DataSource READ');
                            _db.transaction(function(tx) {
                                writeLog('Reading from DB');
                                var sql = 'SELECT name, date FROM testtable LIMIT ' + options.data.pageSize * (options.data.page - 1) + ',' + options.data.pageSize;
                                tx.executeSql(sql, [], function(tx, results) {
                                    writeLog('Results found: ' + results.rows.length);
                                    var data = [];
                                    for (var i=0; i<results.rows.length; i++) {
                                        data[i] = results.rows.item(i);
                                    }
                                     
                                    options.success(data);
                                });
                            }, transaction_error);
                    }
            }
        });
         
        function initTask() {
            writeLog('init');
            $("#tasks").kendoMobileListView({
                dataSource: ds,
                template: kendo.template($("#tmpl-post").html(), {useWithBlock:true}),
                endlessScroll: true,
                scrollTreshold: 30 //treshold in pixels
            });
        }
    </script>
</body>
</html>
Bastien
Top achievements
Rank 1
 answered on 17 Jan 2013
1 answer
406 views
What is the proper way to change the combobox height using CSS?  Note that I am talking about the combobox itself, not the dropdown popup.
Kamen Bundev
Telerik team
 answered on 17 Jan 2013
1 answer
66 views
Hi,

I have created what I think is a relatively simple application. I have started testing on an iPad but whenever I touch the screen to either scroll or hit a button I get a javascript error:

TypeError: 'null' is not an object
url: http://<url here>/js/kendo.mobile.min.js
line #: 10 

I am not sure if you can help me with that information or if I would need to try and send you more. Is it possible to get unminified versions of the js files so I can debug and see what is happening or alternatively if you can tell me this is a common problem and how to fix it :)

Thanks
Robert.
Alexander Valchev
Telerik team
 answered on 17 Jan 2013
1 answer
82 views
Knowing next to nothing about javascript garbage-collection, I ask the following:

If a row template attaches a function to a cell's click-event:

           <td onclick='foo(event)'>   ${population} </td>

are there any memory-management issues for the developer to be concerned about?  Does binding (and rebinding) of data from repeated sorting and grouping potentially cause such listeners to accumulate in memory, or are they automatically disposed of?  
Vladimir Iliev
Telerik team
 answered on 17 Jan 2013
3 answers
281 views
I have a calendar control which is made to display the dates for the month but none of the dates are selected/highlighted. Whenever we click on a date, it gets selected and highlighted. Now if I want to deselect any date selected, what can I do that ? (Means I want none of the dates selected without refreshing the page.)
Georgi Krustev
Telerik team
 answered on 17 Jan 2013
3 answers
272 views
I am using the below code to sort the value of the tree, it seems like the sorting happens based on case. I am trying to figure out a way to perform case insensitive sorting, can you please help me with that?

if(sortValue == 'Ascending')
{
$("#groupTree").data("kendoTreeView").dataSource.sort({ field: "text", dir: "asc" });
} else if(sortValue == 'Descending')
{
$("#groupTree").data("kendoTreeView").dataSource.sort({ field: "text", dir: "desc" });
}
}

Thanks,
Barani
Alex Gyoshev
Telerik team
 answered on 17 Jan 2013
3 answers
200 views
Hi,

I've only recently started using Kendo and I encountered a rather peculiar bug that a teammate of mine has not encountered using the same context.

Attached to this thread is a picture of this bug and below is the code snippet I used to display the calendar.

<div id="calendarDiv">
         @(Html.Kendo().Window()
            .Name("calendarWindow")
            .Title("")
            .Content(@<div>
                @(Html.Kendo().Calendar().Name("calendar"))<br /><br />
                <strong>Choose calendar:</strong><br /><br />
                <strong>Physician:</strong><br /><br />
                @(Html.Kendo().ComboBox().Name("doctors").HtmlAttributes(new { style = "width:200px" }))<br /><br />
                or<br /><br /><strong>Department:</strong><br /><br />
                @(Html.Kendo().ComboBox().Name("departments").HtmlAttributes(new { style = "width:200px" }))
            </div>)
            .Actions(actions => actions
                .Minimize()
                .Custom("custom")
            )
            .Draggable()
            .Resizable()
        )
    </div>

Your support is greatly appreciated.
Georgi Krustev
Telerik team
 answered on 17 Jan 2013
Narrow your results
Selected tags
Tags
Grid
General Discussions
Charts
Data Source
Scheduler
DropDownList
TreeView
MVVM
Editor
Window
Date/Time Pickers
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
Drawer (Mobile)
Drawing API
Globalization
Gauges
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
ScrollView
PivotGridV2
BulletChart
Licensing
QRCode
ResponsivePanel
Switch
Wizard
CheckBoxGroup
TextArea
Barcode
Collapsible
Localization
MultiViewCalendar
Touch
Breadcrumb
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
+? more
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?