Telerik Forums
Kendo UI for jQuery Forum
2 answers
195 views
Hi,

I've just downloaded kendoui.mobile.2012.1.124.beta.zip.

In all examples, the file ../../../styles/kendo.common.min.css is included but it is not available (not included in the zip file).

By the way, what's the best file to call from the CDN if I want to developer a mobile app? I guess it's:

Thanks.
Thomas
Top achievements
Rank 1
 answered on 08 Feb 2012
1 answer
87 views
I have defined a group field on the data source. This is bound to a grid. I am not displaying the group field as a grid column. There seems to be no way to define a title (display name) for the group field unless I also add it as a column. Please let me know if there is a solution for this.

Thanks,
Gary
Rosen
Telerik team
 answered on 08 Feb 2012
5 answers
321 views
I am trying to add a autocomplete kendo control in the navbar of a layout. The kendo control does not work. If i add the autocomplete in a view it works.

Is it possible to add kendo controls to a navbar/ layout header?
Petyo
Telerik team
 answered on 08 Feb 2012
4 answers
406 views
Hi

I created a tabstrip with an kendgrid inside.

The grid is real huge ... they are v scrollbars but I miss the h scrollbars

How to enable v-scroll bars in my tabstrip (or maybe in the grid?)


Marcus
Dimo
Telerik team
 answered on 08 Feb 2012
6 answers
3.8K+ views

I have a grid that I am filling via javascript. When I initially fill the grid, the paging numbers are not displayed. However after I sort a column on the grid they appear.

Here is a short video demonstrating the issue, in both IE and FF.

http://screencast.com/t/i3iXWy9v

The sample project is here:(kendogridtest.zip)
https://skydrive.live.com/redir.aspx?cid=80ce78240aa8df49&resid=80CE78240AA8DF49!1296&parid=80CE78240AA8DF49!657&authkey=!AH-nIxcIUDGzY54



SHAWN
Top achievements
Rank 1
 answered on 08 Feb 2012
1 answer
1.0K+ views
I tried:
<input id="hoursBox" value="0" style="width: 100px" />

and I also tried:
$("#hoursBox").width(100).kendoNumericTextBox({
            format: "#.00",
            min: 0,
            step: 0.1
        });

both methods adjust the width, but the right side border gets cutoff.  I have attached a screenshot, please note the area immediately to the right of the up down arrows.  If I don't adjust the width then it looks fine but it's much to wide.



Kjell
Top achievements
Rank 1
 answered on 08 Feb 2012
2 answers
255 views
if I have only two or more field editable in a row, when i click on a uneditable field this vanishes.

just attached a snapshot:


this is my grid declaration:

        $(function() {
            $("#grid").kendoGrid({
                pageable: true,
                dataSource: {
                    type: "json",
                    serverPaging: true,
                    serverSorting: true,
                    transport: {
                        read: "?module=<?=$_REQUEST["module"]?>&applettype=kserver&mode=action&q=2"    ,
                    },
                    schema: {
                        data: "data",
                        total: "total",
                        model: {
                            id: "id",
                            fields: {
                                NAME: { editable: true },
                                STATUS: { editable: true },
                                UPDATED: { editable: true },
                            }
                        }
                    },
                    pageSize: <?=$ROW_LIMIT?>,
                    serverPaging: true,
                    error: function(e) {
                        alert(e.responseText);
                    },
                    //sort: { field: "CREATED", dir: "asc" },
                },
                editable: true,
                //navigable: true,
                selectable: true,
                //scrollable: true,
                sortable: {
                    mode: "single", // enables multi-column sorting
                    allowUnsort: true
                },              
                columns: [
                              { title: "<?=$LBL_ACTIVITIES_FIELD_CREATED;?>",field: "CREATED" },
                              { title: "<?=$LBL_ACTIVITIES_FIELD_NAME;?>",field: "NAME" },
                              { title: "<?=$LBL_ACTIVITIES_FIELD_AREA;?>",field: "AREA" },
                              { title: "<?=$LBL_ACTIVITIES_FIELD_STATUS;?>",field: "STATUS" },
                              { title: "<?=$LBL_ACTIVITIES_FIELD_PRIORITY;?>",field: "PRIORITY" },
                              { title: "<?=$LBL_ACTIVITIES_FIELD_RECURSE_SAVE;?>",field: "RECURSE_SAVE" },
                              { title: "<?=$LBL_ACTIVITIES_FIELD_PR_GRP_NAME;?>",field: "PR_GRP_NAME" },
                              { title: "<?=$LBL_ACTIVITIES_FIELD_OWNER_NAME;?>",field: "OWNER_NAME" },
                              { title: "<?=$LBL_ACTIVITIES_FIELD_EXP_DT;?>",field: "EXP_DT" },
                              { title: "<?=$LBL_ACTIVITIES_FIELD_UPDATED;?>",field: "UPDATED" }
                          ],
                    
                toolbar: [ "save", "cancel","destroy","create" ]  // adds save and cancel buttons
            });

        });

thanks
Giulio
Giulio
Top achievements
Rank 1
 answered on 07 Feb 2012
1 answer
151 views
Hi,

Let us say I have a dataSource with 2 columns: Name and Contact.
Now I have a searchValue on which I want to filter the dataSource with this expression: "Name == searchValue || Contact == searchValue".
How should I do that? Can't find documentation on that, only about simpel single field filters.
I use this to filter on one field:
dataSource.query({ filter: { field: "Name", operator: "contains", value: searchValue} }); 

But how should I do that with an "or" filter on a second field?
And is possible to use an expression?

Regards, Jaap
Rosen
Telerik team
 answered on 07 Feb 2012
1 answer
131 views
Hi,

So every once in a while I'll be look at the site I created and it just scroll to the bottom of the screen and you can't scroll up or down to see where it went to?  it's just missing.  I can't recreate it but it happens often.  Has anyone else see this?
Petyo
Telerik team
 answered on 07 Feb 2012
8 answers
3.2K+ views
Hi,

Is it possible to implement following scenario using KendoUI Grid or upcoming ListView widget?

Main grid (Show all rows from Groups tabe)

ID   Name           Members
1    Group 1        SubGrid (Show rows from Members table where Members.GroupID=Current row's GroupID)
2    Group 2        SubGrid (show members in group 2)
3    Group 3        SubGrid (show members in group 3)
...

BR
Marko
Ilyas
Top achievements
Rank 1
 answered on 07 Feb 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
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
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
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?