Telerik Forums
Kendo UI for jQuery Forum
1 answer
56 views
Go to the demo site http://demos.kendoui.com/web/grid/index.html, drag two columns for grouping and collapse all items.
The second group shifts to the right in IE9. Have to put it in compatibility mode for it to work.
Please provide a workaround or a fix for this.
Thank you.
Petur Subev
Telerik team
 answered on 22 Jul 2013
2 answers
307 views
So for those of us like me who might want to just try this thing out as a FullCalendar.js replacement (just viewing a month of events at a time, no edit feature, purely just displaying information

Umm seems that the scheduler doesnt actually let you turn editable off.

I didnt set any update/remove transport paths, etc. but I would assume that by turning editable off the user would lose the ability:

 to delete the item
drag items around the calendar
open the edit window (maybe theres a secondary window that just lets you view the information)

my assumption of course is, if we have the ability (at least in writing) to turn off the editability of the controller, that it should show that and not let people try and delete items?
James Hood
Top achievements
Rank 1
 answered on 22 Jul 2013
1 answer
288 views
I currently have a grid that is bound via an Ajax call. The model is a List<Objects> for the view. I have a button that on click I would like to pass the selected data grid object to a different controller/action. 

I have tried to do a Ajax Post however the response is HTML but it does not get rendered to the browser.

Is there an easier way to do this? 

Thanks,
Nav
Petur Subev
Telerik team
 answered on 22 Jul 2013
3 answers
432 views
We're using KendoUI v2013.1.514 and Twitter Bootstrap, and this issue seems to be noticeable in Chrome 27 (couldn't duplicate behavior in IE10). The behavior is also noticeable on your demo page at http://demos.kendoui.com/web/numerictextbox/index.html .

I have a NumericTextBox in a Kendo Window. Everything works great, except I noticed that it was difficult to click on the down arrow of the NumericTextBox. I started clicking to find where the boundary was, and as you can see from my image attachment, the pointer was many pixels above the down arrow but was still registering the click on the down arrow. What is causing the down arrow to take up so much more clickable area than the up arrow? Do I need to fix something, or is this a Kendo issue?
Dimo
Telerik team
 answered on 22 Jul 2013
3 answers
138 views
The new Scheduler looks like a great start!  There are a few features I've seen in other commercial HTML5 scheduling components that that are worth mentioning (these are de riguer to us):

  1. Exposing methods/properties for controlling background cell painting in the appointment grid.
  2. Surfacing drag/drop/hover events on an appointment that is being dragged as well as on the background grid slots.
  3. Built-in support for a secondary appointment color (e.g., a vertical bar along the left edge of the appointment) tied to a distinct property of the developer's choosing (e.g., appointment status).  This can be handled with custom templates, of course, but it comes up often enough to be useful as a built-in feature.
Also, there are a couple of bugs in the current beta version relating to appointments that subtend the midnight boundary but are less than 24 hours long:

  1.  When moving the appointment, the transparent "shadow" used to indicate the drag position has time added to the end relative to the actual length of the appointment being dragged.
  2. When dragging an appointment to an earlier time such that it no longer subtends the midnight boundary, the appointment disappears(!)
Peter
Atanas Korchev
Telerik team
 answered on 22 Jul 2013
1 answer
254 views
Hi,

I am binding a div with the property "contentEditable"=true that is bound with data-bind="html: Message".  However, it appears to be a read only property since when I make changes to the div and then move off the div triggering the blur event, the Message property contains the original value.

Am I doing something wrong or is this just the way it is designed?

Thank you,
David A.
Atanas Korchev
Telerik team
 answered on 22 Jul 2013
2 answers
275 views
Hi,
How cab I add a scroll view on the fly.
I tried the attached code but it doesn't really work
Can you help ?
Sagi
Petyo
Telerik team
 answered on 22 Jul 2013
3 answers
325 views
I have Kendo grids that are html helper grids when I delete or add items to the grid then the item count doesn't update properly it tries to remove one from the count then instantly goes back to the original count after something is deleted.
Alexander Valchev
Telerik team
 answered on 22 Jul 2013
1 answer
567 views
I am trying to filter a  Kendo grid DateTime column but it is not returning any results because it takes into account the time part as well. Is there a way I can filter a column without it using the timepart. Is it possible to filter the column by dd/MM/yyyy instead of dd/MM/yyyy hh:mm:ss

  Below is my grid code

View
@(Html.Kendo().Grid<PaperworkViewRecord>()
                .Name("IncompleteStartersPaperworkGrid")
                 .Sortable()
                .Pageable(paging => paging.PageSizes(new int[]{10,25,50,100,200}).Numeric(true).Numeric(true).PreviousNext(true))
                .Filterable()
                .Groupable()
                 .ColumnMenu()
                .Columns(columns =>
                {
                    columns.Bound(o => o.FirstName).Title("First Name");
                    columns.Bound(o => o.LastName).Title("Surname");
                    columns.Bound(o => o.BirthDate).Format("{0:dd/MM/yyyy}").Title("Birth date");
                    columns.Bound(o => o.StartDate).Format("{0:dd/MM/yyyy}").Title("Start Date").Template(o =>DateExtensions.FormatDate(o.StartDate));
                    columns.Bound(o => o.FrameworkName).Title("Framework");
                    columns.Bound(o => o.FundingStreamName).Title("Funding Stream");
                    columns.Bound(o => o.Assessor).Title("Assessor");
                    columns.Bound(o => o.ProviderName).Title("Provider").Hidden(true);
                    columns.Bound(o => o.IsFunded).Title("Funded").Hidden(true);
                    columns.Bound(o => o.AgeAtSignUp).Title("Signup Age").Hidden(true);
                    
                })
                .EnableCustomBinding(true)
                  .DataSource(dataSource =>dataSource.Ajax()
                                                        .Read( read=>read.Action("GetIncompleteStartersModel_Read", "Compliance"))
                                                        .ServerOperation(true))
                                                        
                .Events(e=>e.DataBound("onIncompleteStartersPaperworkGridDataBound"))
                )

DataSourceResult method

 public DataSourceResult GetIncompleteSignupStarterPaperworkRecords(DataSourceRequest request)
        {
            var paperworkRecords = _paperworkRepository.FetchByType(PaperworkType.Starter.ToString())
                                                       .Where(x => !x.SignupComplete);
            var paperworkDtoRecords = paperworkRecords.ToDataSourceResult(request, m => m.MapToPaperworkViewRecord());
            return paperworkDtoRecords;
        }


Petur Subev
Telerik team
 answered on 22 Jul 2013
1 answer
99 views
When I click the "index" button in the example listed in the latest version, the entire example stops working. (kendoui.complete.2013.2.716.commercial\examples\mobile\drawer\index.html)
Petyo
Telerik team
 answered on 22 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
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
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?