Telerik Forums
Kendo UI for jQuery Forum
8 answers
545 views
Hi,

I am using DateTimePicker control on a column filter on Kendo Grid. The column type is also DateTime.

The scrollbar for the Time Picker works perfect at the start. But as soon as the Grid data is changed (e.g; some column is sorted), the scrolling goes away. The time values from 00 to 24 are diplayed without any scrolling and destroys the outlook of the whole page.

I was looking for some DateTimePicker options to set its css, but apparently it is not possible.

Best Regards
Zaheer
Kiril Nikolov
Telerik team
 answered on 23 Jul 2014
2 answers
129 views
Is it possible to use a grouped Datasource in the DropDownList? I just want to use the groups for something like optgroups in html selects.

Thanks in advance.

Georgi Krustev
Telerik team
 answered on 23 Jul 2014
5 answers
117 views
Hello,

Currently when a Task is moved update Event fires and the new datetime is saved. incase of recurring Event we get messagebox to edit series or particular day. My requirement is to Show the add/edit popup window when a Task is moved. So in Scheduler_movestart may be if we can bring up the edit window and then user can Change other values as well and not just start/end date and time.

Thanks

Anamika
Vladimir Iliev
Telerik team
 answered on 23 Jul 2014
1 answer
47 views
Hi

My client has an requirement to show the instructional text 'Drag a column header and drop it here to group by that column' to appear always even though we do already have a grouping done.

Currently the text appears only when no grouping is done and disappears as soon as we do a group by any one of the column but my requirement is to make this text appear all the time.

Please try on this fiddle where there is default grouping on one of the column.

http://jsfiddle.net/Mans/j7cvN/3/

I have tried doing it in Databound event but was not lucky since it is disappearing.

Thanks in advance
Dimiter Madjarov
Telerik team
 answered on 23 Jul 2014
4 answers
170 views
Hi,

I am using Kendo Mobile v2014.1.528. We have a gallery page with a scrollView. Once the user clicks on an image he's taken to a new page with just that image. The problem is that when the user goes back the scrollView can now be dragged vertically?! I have come a cross an older thread of similar bug, but it was resolved two years ago.

How can I fix this?
Cool Apps
Top achievements
Rank 2
 answered on 23 Jul 2014
1 answer
87 views
Is there any option to know, what caused dataSource change event?
In documentation writes:
"Fired when the data source is populated from a JavaScript array or a remote service, a data item is inserted, updated or removed, the data items are paged, sorted, filtered or grouped."

I need to know, when change event was caused by grouping, sorting, ...
Kiril Nikolov
Telerik team
 answered on 23 Jul 2014
1 answer
53 views
Dear Support,
I am using "telerik.kendoui.professional.2014.1.528.trial" file set to test the new version for our existing application to be upgraded. I am facing a problem when I am going for batch editing. Kendo grid can not persist its dirty state when the cell focus is changed.

I am attaching the test environment. Please use "http://localhost:port no/Home/VersionTest" to get the corresponding page.

Vladimir Iliev
Telerik team
 answered on 23 Jul 2014
1 answer
537 views
Hello ,

i have 3 vertical panes in splitter and top one is nonresizable having search box. second and third contains datagrid , i want to have fixed height of second and third vertical panes and grid height to fit them even if no data. I cannot achieve this with htmlattiribute height.
@(Html.Kendo().Splitter()
.Name("vertical")
.Orientation(SplitterOrientation.Vertical)
.Panes(verticalPanes =>
{

verticalPanes.Add()
.Size("50px")
.HtmlAttributes(new { id = "bottom-pane"})
.Resizable(false)
.Collapsible(false)
.Content(@<text><div class="pane-content">Suchen:
@Html.TextBox("adrsearchbox")<input class="k-button" id="adressSearch" type="button" value="Suchen" />
<label><input type="checkbox" id="IsNew-checkbox" checked="checked" /> Archivierte Aufträge Anzeigen</label>
</div></text>);
verticalPanes.Add()
.Size("300px")
.HtmlAttributes(new { id = "middle-pane"})
.Collapsible(true)
.Resizable(true)
.Content(@<text>
@(Html.Kendo().Grid(Model)
.Name("Grid_Adress")
.DataSource(dataSource => dataSource
.Ajax()
.Model(model =>
{
if (Model != null)
{
foreach (System.Data.DataColumn column in Model.Columns)
{
model.Field(column.ColumnName, column.DataType);
}
}
})
.Read(read => read.Action("AdressSearch_Read", "Adress").Data("addSearch"))
.ServerOperation(false)
)
.Events(events => events.Change("onChange"))
.Columns(columns =>
{

for (int i = 0; i < ViewBag.ListHeader.GetLength(0); i++)
{
columns.Bound(ViewBag.ListHeader[i, 0]).Title(ViewBag.ListHeader[i, 1]);
}

})
.Selectable(selectable => selectable
.Mode(GridSelectionMode.Single))

.Pageable(pageable => pageable
.PageSizes(true)
.ButtonCount(20))
)
</text>);
verticalPanes.Add()
.Size("300px")
.HtmlAttributes(new { id = "bottom-pane"})
.Resizable(true)
.Collapsible(true)
.Content(@<text>
@(Html.Kendo().Grid(Model)
.Name("Grid_Ansprache")
.DataSource(dataSource => dataSource
.Ajax()
.Model(model =>
{
if (Model != null)
{
foreach (System.Data.DataColumn column in Model.Columns)
{
model.Field(column.ColumnName, column.DataType);
}
}
})
.Read(read => read.Action("Ansprache_Read", "Adress"))
.ServerOperation(false)
)
.Columns(columns =>
{

for (int i = 0; i < ViewBag.AnspListHeader.GetLength(0); i++)
{
columns.Bound(ViewBag.AnspListHeader[i, 0]).Title(ViewBag.AnspListHeader[i, 1]);
}

})
.Selectable(selectable => selectable
.Mode(GridSelectionMode.Single))

.Pageable(pageable => pageable
.PageSizes(true)
.ButtonCount(20))
)
</text>);

 })
)

How can i achieve it. When we have more records in grid it should show vertical scrollbar. Now my grids are touching each other
Dimo
Telerik team
 answered on 23 Jul 2014
5 answers
86 views
Hi, can Anyone tell me how to remove this message of the Kendo grids?


I have not found any property that let me do this..


Regards,

Jairo.
Jairo
Top achievements
Rank 1
 answered on 22 Jul 2014
3 answers
316 views
i want multiselect in one of the grid column and want to bind that multiselect  dynamically.how to do it?..and also grid functionalities are not working means filter,paging etc.grid is in partial view
Alexander Valchev
Telerik team
 answered on 22 Jul 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
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
MultiColumnComboBox
Chat
DateRangePicker
Dialog
Checkbox
Timeline
Drawer
DateInput
ProgressBar
MediaPlayer
ImageEditor
TextBox
OrgChart
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
TaskBoard
Popover
DockManager
FloatingActionButton
CircularGauge
ColorGradient
ColorPalette
DropDownButton
TimeDurationPicker
ToggleButton
TimePicker
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
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?