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

There are many rating components available on JQuery. Wanted to use this : http://www.myjqueryplugins.com/jRating/demo in my kendo template with databinding. i.e. I must be able to bind a dataSource property to the score of the rating component.

Please help
Jack
Top achievements
Rank 2
Iron
 answered on 03 Jul 2013
2 answers
137 views
i'm using MySql and within that i also use link table, where i store id's interconnection between 2 tables.
i have no problems displaying the data, but the problems with any grid comes when i need to update both tables.

so the question - does Kendo Grid support link tables?

thanks
Elen
Matias
Top achievements
Rank 1
 answered on 03 Jul 2013
2 answers
223 views
Hello,

I am trying to create AutoComplete feature in my mobile application and I don't find any in the examples. My social networking apps (Twitter and Padgram) have this feature, so I am sure there is a way.

Could you tell me how and show me an example?

Thanks!

Shoji Kaburagi
Top achievements
Rank 1
 answered on 03 Jul 2013
1 answer
303 views
I try to display a treeview that  I build with ul and li from a ajax call:

<div class="demo-section">
        <ul id="555804139789770" class="treeview">
            <li data-expanded="true">Niveau 1
                <ul>
                    <li data-expanded="true" id="1234">Niveau 1.1
                        <ul>
                            <li data-expanded="true" id="123456">Niveau 1.1.1
                                <ul>
                                    <li data-expanded="true" id="1234567">Niveau 1.1.1.1
                                    </li>
                                </ul>
                            </li>
                        </ul>
                    </li>
                    <li data-expanded="true" id="12345">Niveau 1.2
                    </li>
                </ul>
            </li>
        </ul>
    </div>

There is my javascript  
   
$(".treeview").livequery(function() {
    
        $(this).kendoTreeView({
    
        });
    });

It works but it's slow

Do you have an other way to do that

Daniel
Telerik team
 answered on 03 Jul 2013
1 answer
86 views
In an MVC (Razor) environment:
Looking to have a hierarchy grid structure.... where the details grids get their data from a single stand alone kendo.dataSource object.
Looking to do this to work around detail grid having to Ajax back to the server for each detail record expand.
End goal is to have all detail records data passed at initial load of page and avoid numerous ajax hits.

Any suggestions?

Thanks.
Vladimir Iliev
Telerik team
 answered on 03 Jul 2013
3 answers
99 views
I've got the child browser wired up to the data-click event on a list view, but when I click on an item that has a div (with a background image) in the list item, it doesn't work. Clicking outside the image does work.

<style>
 .imageClass {
    background-image: url(some/image.jpg);
}
</style>

<ul data-role="list-view" data-click="onClick">
 <li><a href="#" data-linkUrl="someUrl"><div class="imageClass"></div>Clicking Text Works</a></lI>
</ul>
Steve
Telerik team
 answered on 03 Jul 2013
2 answers
161 views
EDIT:
I have been debugging and found the the content area height is being set to 1 pixel less than the total height.  
from kendo.all.js:

_setContentHeight: function() {
            var that = this,
                options = that.options,
                height = that.wrapper.innerHeight(),
                header = that.wrapper.children(".k-grid-header"),
                scrollbar = kendo.support.scrollbar();

            if (options.scrollable) {

                height -= header.outerHeight();

.....

the header.outerHeight() is returning 1 when it should be returning 41 or so for this particular grid.  not sure whats going on,  I will try and get a jsfiddle up and running.

Regards,
jimm
 


I have found some odd behavior when trying to create a grid.

please see the attached files in order:
First: notice the grid content height is shorter than the actual displayed content.  this grid is created by calling .kendoGrid() on an html table. 
CODE:
$('.ToKendoGrid').kendoGrid({ scrollable: false });
$('.ToKendoGridScroll').kendoGrid({ scrollable: true, height: 325 });

the html table is created via partial mvc views and when not kendo gridified it looks correct.

Second I have changed what is displayed on the current tab by changing the dropdown list to only show a specific set of information.

Third I have gone back to all information and the grid is now displaying correctly. 

Thoughts?

Regards,
jimm

One a side note I tried to submit this request through chrome and the file upload feature did not display correctly.

Jimm
Top achievements
Rank 1
 answered on 03 Jul 2013
1 answer
91 views
Started with the Icenium / Everlive / Kendo MVVM example. My add model for the class YFKey (name, description, status) is as follows:

    window.addYFKeyViewModel = (function () {
        var $newName, $newDescription, $newStatus;
        var validator;
        var init = function () {
            validator = $('#enterStatus').kendoValidator().data("kendoValidator");
            $newStatus = $("#newStatus");
            $newName = $('#newName');
            $newDescription = $('#newDescription');
        };
        var show = function () {
            $newStatus.val('');
            $newName.val('');
            $newDescription.val('');
            validator.hideMessages();
        };
        var saveYFKey = function () {
            alert("In saveYFKey");
            if (validator.validate()) {
                var items = YFKeysModel.YFKeys;
                var item = items.add();
                item.Name = $newName.val();
                item.Description = $newDescription.val();
                item.Status = 0;
                item.IsSystem = false;
                item.UserId = usersModel.currentUser.get('data').Id;
                items.one('sync', function () {
                    window.mobileApp.navigate('#:back');
                });
                items.sync();
                items.refresh();
            }
        };
        return {init: init, show: show, me: usersModel.currentUser, saveYFKey: saveYFKey};
    }());

This is accessed by an "Add" button from the listview of YFKeys (working fine) modeled exactly after the activities class within the example. Problem is this: AFTER I do an Add to the class YFKey, give new data, and hit the Save button, Everlive database IS properly updated, but the new item is in my listview with blank values, i.e., no name, and no description.

Not sure - probably an asynch problem? Not clear what the "one" function in your example does...

Any ideas?
Thanks.
CW
Petyo
Telerik team
 answered on 03 Jul 2013
2 answers
286 views
Hello,

I just wanted to start a discution about the vertical grid component.

In other telerik's products (WPF / Win Form / Silverlight), there's this Property Grid compoenent, which is a very handy when your need to display a simple record.

I wonder if that kid of componenet could be added to Kendo UI?

Here' my suggestion on kendo's user voice:
http://kendo.uservoice.com/forums/127393-kendo-ui-feedback/suggestions/2841182-vertical-grid-property-grid

Regards,

Simon
Jack
Top achievements
Rank 2
Iron
 answered on 03 Jul 2013
2 answers
203 views
Really useful widget. I have noticed that when I slide the drawer in, the hover color on the drawer-menu reflect where my finger was on the previous view that I slide away.  This is a bit confusing.
  
Per Lindsø
Top achievements
Rank 2
 answered on 03 Jul 2013
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?