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

I've found a couple bugs with the Kendo Grid when navigatable is set to true. First, you cannot multiselect rows using the keyboard. I would expect shift+arrows or ctl+arrows would select multiple rows. However, this is not the case. Second, if you select a row in the Kendo Grid and then you navigate to that grid with the keyboard and move the arrows keys, the selection of the currently selected row does not change but instead other rows are selected IN ADDITION to the one selected with the mouse.

 Is there a known work around for these? If not, are these things you guys are aware of and planning on fixing?
Jason
Top achievements
Rank 1
 asked on 31 May 2012
14 answers
886 views
I have been unable to connect the Kendo Grid to my ASP.NET JSON Web Service as no data is appearing. Can you tell me how to fix the Kendo Grid so it consumes the web service.  Thanks

    $(document).ready(function() {
                    $("#grid").kendoGrid({
         dataSource: {
             type: "jsonp",
          serverPaging: true,
          serverSorting: true,
          pageSize: 13,
          transport: {
           read: "../../emrwebservices/service.asmx/getSampleSQLDataKendo"}
           },
             schema: {
                 data: 'items',
                 total : function(data) {return data.totalCount;
              }
         },
      height: 250,
      scrollable: true,
      sortable: true,
      pageable: true,
      columns: [
                            { field: "userID", title: "User ID" },
                            { field: "fullName", title: "Name" },
                            { field: "userName", title: "User Name" },
                            { field: "eMail" },
                            { field: "isActive"}
                        ]
                    });
                });

Web Service data is below.  Also viewable at http://www.speechtodocs.com/emrwebservices/service.asmx

{"totalCount":80,"items":[{"userID":"227","fullName":"Dr. Hank Aaron","userName":"HankAaron","eMail":"melissa@dmmt.com","isActive":"True"},{"userID":"197","fullName":"Dr. Jeffrey Aronoff","userName":"4690","eMail":"melissa@dmmt.com","isActive":"True"},{"userID":"189","fullName":"Dr. Sunil Asnani","userName":"4749","eMail":"melissa@dmmt.com","isActive":"True"},{"userID":"165","fullName":"Dr. Kalman etc..................
Engifaar
Top achievements
Rank 1
 answered on 31 May 2012
2 answers
71 views
I just registered on kendo and downloaded the trial of kendoui.

On same page, the kendoui test studio download was also suggested.

When i tried that, it took me to login again.

But the account login of kendoui did not work there.

Would it not be nice that kendoui account login is same as telerik  and vice versa ?
Prashant
Top achievements
Rank 1
 answered on 31 May 2012
0 answers
147 views
Hi Team,

I am using kendo UI grid component, I fetched data and in grid component but now i need to refresh grid data automatically after given interval of time. Is there any method or technique available in Kendo Framework for grid.?
Could you please help me for this?


Thanks,
Ankush.
Ankush
Top achievements
Rank 1
 asked on 31 May 2012
0 answers
196 views
Is it possible to expand the treeview when you drag a node onto a parent node which isnt expanded?

Thanks
Gregor
Gregor
Top achievements
Rank 1
 asked on 31 May 2012
2 answers
217 views
hi

i´ve got two grids the loads as details on a main grid.
on my desktop everything works well, but on my android tablet (moto xoom, 10", android 4) if i click on one of those tabs, the tab content doesnt appear and from then, no tab is working anymore (not even clickable anymore).
tested with different browser and the same result.

my template
<script type="text/x-kendo-template" id="template">
<div class="tabstrip">
<ul>
<li>
Adressen
</li>
<li class="k-state-active">
Kontakte
</li>
</ul>
<div>
<div class="addresses"></div>
</div>
<div class="contacts"></div>
</div>
</div>
</script>

my detailinit
function onDetailInit(e) {
 
    var detailRow = e.detailRow;
    detailRow.find(".tabstrip").kendoTabStrip({
        animation: {open: {effects: "fadeIn"}}
    });
 
    detailRow.find(".addresses").kendoGrid({
        dataSource: DataSource.get("address"),
        serverPaging: true,
        serverSorting: true,
        serverFiltering: true,
        scrollable: false,
        sortable: true,
        pageable: true,
        columns: [
            {field: "street_address", title:"Anschrift"},
            {field: "zip", title: "PLZ"},
            {field: "city", title: "Ort"}
        ]
    });
    detailRow.find(".addresses").data("kendoGrid").dataSource.filter( [{ field: "id", operator: "eq", value: e.data.id }] )
 
 
    detailRow.find(".contacts").kendoGrid({
        dataSource: DataSource.get("contact"),
        serverPaging: true,
        serverSorting: true,
        serverFiltering: true,
        scrollable: false,
        sortable: true,
        pageable: true,
        columns: [
            {field: "surname", title:"Nachname"},
            {field: "prename", title: "Vorname"},
            {field: "phone", title: "Telefon"},
            {field: "mail", title: "Email"},
            {field: "birthday", title: "Geburtsdatum", template: '#= kendo.toString(birthday, "dd.MM.yyyy")#'}
        ]
    });
    detailRow.find(".contacts").data("kendoGrid").dataSource.filter( [{ field: "client_id", operator: "eq", value: e.data.id }] )
}

attached is a screenshot of the "lost tabs" on my xoom.
i hope somebody can help me out.

thx in advance
Daniel
Top achievements
Rank 1
 answered on 31 May 2012
5 answers
195 views
I downloaded the trial version and did a sandbox to see if the Menu widget would work in our site. So far so good. One thing that I'd like our menus to do is expand down, even if the viewport is smaller than the height of the menu. Right now, it seems like the menu widget tries to move upward to stay within the viewport.

Is there a way to configure the menu to ignore the viewport?
Kamen Bundev
Telerik team
 answered on 31 May 2012
3 answers
176 views
Hi,

How can I set my own text for the tabStrip button on the footer.
This is important for localization. It seems that the build-in data-icon put its own text and need a way to use standard icon but override the text. Thank you.

  <div data-role="footer">
                <div data-role="tabstrip">
                     <a href="content/views/doctorsearch.html" id="btnActionSearch" data-icon="search"></a>
                     <a href="content/views/settings.html" id="btnActionSettings" data-icon="settings"></a>
                </div>
            </div>
Petyo
Telerik team
 answered on 31 May 2012
3 answers
169 views
I am reading a JSON file as a dataSource (example below), and binding that data to a ListView.

===== dataSource definition =====
var data = new kendo.data.DataSource({
transport: {
read: {
url: "json/data.json",
dataType: "json"
}
}
});

===== contents of data.json ===
[
{"id": "111", "location" : "Location A"},
{"id": "222", "location" : "Location B"}
.....
]

I would like to come back later and reference one of the elements in that datasource such as data[0].id, or data[0].location.

How do I go about exposing the data?
Engifaar
Top achievements
Rank 1
 answered on 31 May 2012
0 answers
145 views
Hello

I want to disable iframe int he js like this


function update_item(tid){


var WINURL = "<%=basePath%>threat/threat!input.action?id="+tid
var edit_window = $("<div/>").kendoWindow({
actions: ["Refresh", "Maximize", "Minimize", "Close"],
animation:false,
height: "300px",
visible: false,
width: "420px",
close: function (e) {
// reset global var 'global1' and destroy window
this.destroy();
},
iframe:false,
content:WINURL
}).data("kendoWindow");
 
edit_window.center();
edit_window.open();

}
 

but , I use chrome I still find the page I load into the windows still appear in a <iframe> and add the <html><head><boday> for me again. How can I solve this problem ? 

 
Neo Wong
Top achievements
Rank 1
 asked on 31 May 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
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
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?