Telerik Forums
Kendo UI for jQuery Forum
6 answers
244 views
Kendo docs is a nice looking site ... http://docs.kendoui.com/getting-started/changes-and-backward-compatibility

I thought now if I can just make my Kendo Web UI site work like this I'll get a pay rise for sure!

Seems though that each treenode selection triggers a postback and so the entire page is returned along with lots of ugly viewstate.

So now I'm thinking .... how can I use the Kendo UI treeview like this as a page navigator and have it's state persist across postbacks? Do I need to have my "content" page in a frame?
Daniel
Telerik team
 answered on 26 Mar 2014
6 answers
299 views
When a column filter is set to a dropdownlist but no option label is set hitting filter does not filter the grid until the dropdownlist value is changed.  http://trykendoui.telerik.com/ojUV
Ryan
Top achievements
Rank 1
 answered on 26 Mar 2014
1 answer
165 views
After scrolling the window datetimepicker trigger close event immediately after open http://demos.telerik.com/kendo-ui/web/datetimepicker/index.html
Georgi Krustev
Telerik team
 answered on 26 Mar 2014
3 answers
212 views
Greetings,

I just published one of our web apps to a testing server to test the upgrade from 2013.3.1316 --> 2014.1.318. It looks good for the most part. I have found one issue I can not explain. In 2013.3.1316, the application rendered great for ie8,ie9,ie10,ie11, chrome and Firefox. After the latest update it seems all of the browser versions except ie9 are rendering correctly. There seems to be something off with the styling for ie9 standard mode. I have attached a few screenshots.

Thanks
Ross B.
Top achievements
Rank 1
 answered on 26 Mar 2014
1 answer
101 views
I need to subscribe my external edit template to grid edit, in order my update and cancel buttons work, but I don't know how to do it. Any help?

In the attached code I rendered all the information I need and how I wanted it,  but when I click in the update or cancel button, nothing happens.



Daniel
Telerik team
 answered on 26 Mar 2014
2 answers
115 views
We are binding the kendo grid widget to a dataset where columns are identified only by an index (their definitions/content are dynamic and are known only at runtime).

We use the following approach to bind columns:
for (var i = 0; i < 5; i++) {
    var entryIndex = "entries[" + i + "]";
    columns.push({
        field: entryIndex,
        title: "Column " + i
    });
}

Which is a mechanism that is used by others as well.

We just noticed that this approach breaks when aggregates(footerTemplate) are defined on such columns.

Example of such behavior (please uncomment marked code)

Is this a bug that can be fixed in kendo code? 
Is there a workaround you can suggest?

Thanks.

Alexander Popov
Telerik team
 answered on 26 Mar 2014
3 answers
209 views
Hi,

I've an unordered list of items which is convert to a Treeview. I want my tree to be have drag and drop functionality as well as check-boxes to unable multiple selection. Drag and drop is working perfectly but when i try to use check-boxes, check-boxes just dont show up. Due to project complexity i can't use data source to bind to treeview, it has to be unordered list. The List is not static, items are added at runtime. Kendo version used: 2013.2.716

Below is the sample code:
<div id="example" class="k-content">
            <div class="demo-section">
                <ul id="treeview">
                    <li data-expanded="true">
                        <span class="k-sprite folder"></span>
                        My Web Site
                        <ul>
                            <li data-expanded="true">
                                <span class="k-sprite folder"></span>images
                                <ul>
                                    <li><span class="k-sprite image"></span>logo.png</li>
                                    <li><span class="k-sprite image"></span>body-back.png</li>
                                    <li><span class="k-sprite image"></span>my-photo.jpg</li>
                                </ul>
                            </li>
                            <li data-expanded="true">
                                <span class="k-sprite folder"></span>resources
                                <ul>
                                    <li data-expanded="true">
                                        <span class="k-sprite folder"></span>pdf
                                        <ul>
                                            <li><span class="k-sprite pdf"></span>brochure.pdf</li>
                                            <li><span class="k-sprite pdf"></span>prices.pdf</li>
                                        </ul>
                                    </li>
                                    <li><span class="k-sprite folder"></span>zip</li>
                                </ul>
                            </li>
                            <li><span class="k-sprite html"></span>about.html</li>
                            <li><span class="k-sprite html"></span>contacts.html</li>
                            <li><span class="k-sprite html"></span>index.html</li>
                            <li><span class="k-sprite html"></span>portfolio.html</li>
                        </ul>
                    </li>
                </ul>
            </div>
            <script>
                $(document).ready(function () {
                    $("#treeview").kendoTreeView({
                        dragAndDrop: true,
                        checkboxes: {
                            checkChildren: true
                        }
                    });
                });
            </script>
        </div>
Alexander Popov
Telerik team
 answered on 26 Mar 2014
1 answer
90 views
Been using suggestion from: http://www.telerik.com/forums/grid-row-hover-effect, but the latest patch breaks.

function addExtraStylingToGrid() {
    $(".k-grid > table > tbody > tr").hover(
      function () {
          $(this).toggleClass("k-state-hover");
      }
    );
};

Dimo
Telerik team
 answered on 26 Mar 2014
1 answer
264 views
Hi there,

We are facing some issues with Time Zone settings on Kendo grid. If we change the time zone settings, KendoGrid is displaying the different date based on the server's datetime settings.  We found that the Kendo team already given the fix in this link:

http://www.telerik.com/support/code-library/using-utc-time-on-both-client-and-server-sides

However, the above fix should be applied to each grid, which is very tedious job on our project. Do you have some clean fix or a single place where we can apply it to recent kendo releases?

Many thanks
Kiril Nikolov
Telerik team
 answered on 26 Mar 2014
1 answer
98 views
Hi. This company has a lot of webapps that were validated against IE8 when they were purchased, but will not function correctly with 9 or 10. This means no HTML5 or CSS3 for us (Trust me, I know what I'm missing and it's very frustrating). We are licensed to use the current DevCraft complete, which comes with Kendo UI Complete, so before I waste my time looking at what this suite has to offer, is there any part of it that I CAN use in this IE 8, CSS2.1, NO HTML5 environment? Other browsers are not an option. Thank you.
Kiril Nikolov
Telerik team
 answered on 26 Mar 2014
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
DropDownTree
ListBox
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
LLM Kit
+? 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?