Telerik Forums
Kendo UI for jQuery Forum
1 answer
121 views
Hello,
There is a behavioral discrepancy between datepicker and datetimepicker when using yyyy-MM-ddTHH:mm:ssZ datetime format. Is there something wrong with parseFormats parameter? Below is the sample code.
http://jsfiddle.net/Q92EL/
Georgi Krustev
Telerik team
 answered on 10 Sep 2012
1 answer
219 views
Hi guys,

How can I change the buttongroup font color and is it possible to set the whole buttongroup width to a percentage?

Regards
Martin Joubert
Iliana Dyankova
Telerik team
 answered on 10 Sep 2012
2 answers
256 views
Hi,

I'm using Kendoui  Dataviz 2012.2.831 build and I'm playing with custom bar colors when using chart type = "column"
If i set a series color in series declaration the columns get rendered flat color, even when I set overlay gradiant value to glass (which is the default value)

            series:
                [{
                    field: "salesValue",
                    name: "Current Year",
                    color: "#ff0000"
                },
                {
                    field: "salesLastYearValue",
                    name: "Last Year",
                    color: "#00ff00",
                    overlay: {
                        gradient: "glass"
                    }
                }],

When I use the new property colorField and provide the same color values as columns im my dataset the chart columns are rendered with glass overlay.

Is this a bug or the normal behavior...


Mark
Top achievements
Rank 1
 answered on 10 Sep 2012
1 answer
132 views
I'm just looking to upgrage to Kendo after using MVC Grids.

The older MVC Grid demos have nice example code Views, Controllers etc.

Where do I find the complete example code for the KendoUI Grid control?

Zac.
Atanas Korchev
Telerik team
 answered on 10 Sep 2012
1 answer
136 views
Hi,

i have a problem with the refresh/resize from the Chart, if i resize the Browser the Cahrt is still in the original size before. I have to click F5 to resize the Chart in the browser.
I attached my KendoChart Project. Open the index.html in your browser, resize the browser and you will see the problem.

How can i solve this...

Best Regards
Thanks
Rene
Iliana Dyankova
Telerik team
 answered on 10 Sep 2012
1 answer
371 views
I am having several problems that I just cannot figure out. I would like to use a combobox or an autocomplete as part of my edit template. I cannot use a static list and i need to search because i could have thousands of results. 

I have been trying to get these routine tasks to work for several days now and I am having no luck.This has to be a scenario that lots of people use. There is a simple lookup where i need to get the resultant id and attach it to a record and i dont care about the text, just the id.  
If there were more complete examples out there I would assume I can figure this out, but there isn't and I cannot. Please help.

I have included a fiddle that displays all of the problems that I am seeing when I try to edit a ListView inline. http://jsfiddle.net/grippstick/Zv7mc/

  1. When you edit an item it updates the data-value-field with the data-text-value. In the jsFiddle you will see the SkillID is overwritten with the Skill Name.
  2. When you edit and then click the drop down, it selects the first item in the list and not actual value that is already present.
  3. If you click edit on one row and then click edit on another row, the list view will go out of edit mode, but then the buttons will not work and it never goes back into edit mode.
  4. The save event still fires even if the required field is not filled out and it does not pass validation. It does not move my data back to my original object, so i have to copy it. i would assume i do it here.
  5. How would this work with an autocomplete? I can only seem to get the text field to show and it always displays the id by default.
Nikolay Rusev
Telerik team
 answered on 10 Sep 2012
0 answers
167 views
Hi,

Please find the sample link  http://jsfiddle.net/K4Gmc/  

- Can you please suggest me how to set width for the Custom command column using MVVM.
- How to bind event for the custom command column for the view model.
- Not able to set template for the Custom command column using MVVM.

 

Thanks in advance.


Sunil TVL
Top achievements
Rank 1
 asked on 10 Sep 2012
3 answers
126 views
When using a custom editor for a grid column like this: <select data-role="dropdownlist">....</select>, the control is not focused when you tab from another cell to this cell. Instead the cell keeps the focus.

This is because the last line in Editable.refresh() does not work. There the selector ":input:visible:first" is used to find the control to focus.

But in case of the dropdownlist there is no visible input, only span tags.

How to solve this?





Regards, Jaap
Nikolay Rusev
Telerik team
 answered on 10 Sep 2012
1 answer
114 views

Hi,

I am using kendo dropdown for updating Status in my database, but when i open my popup page I dont get the default value from the database in my dropdown,

here is the dropdown I am using

 

@(Html.Kendo().DropDownListFor(model => model.Status)

.Name(

 

"Status")

 

.DataTextField("Text")

 

.DataValueField("Value")

 

 

.BindTo(

 

new List<SelectListItem>() {

 

 

 

 

new SelectListItem() {

 

Text =

 

"Active",

 

Value =

 

"true"

 

},

 

 

new SelectListItem() {

 

Text =

 

"InActive",

 

Value =

 

"false"

 

 

 

 

 

 

}

 

}

)

)

 

Georgi Krustev
Telerik team
 answered on 10 Sep 2012
1 answer
150 views
Hi!

I want to display a full list of my grid without any paging.

@(Html.Kendo().Grid(Model)
    .Name("GridField")
    .Columns(columns =>
    {
        columns.Bound(item => item.SalonID);
        columns.Bound(item => item.Avtnr);
        columns.Bound(item => item.SalonName);
        columns.Bound(item => item.Street);
        columns.Bound(item => item.ZipCode);
        columns.Bound(item => item.City);
        columns.Bound(item => item.Telephone);
        columns.Bound(item => item.SalonEmail);
        columns.Bound(item => item.Description);
        columns.Bound(item => item.ContactPerson);
    })
    .ColumnMenu()
    .Groupable()
    .Pageable()
    .Sortable()
    .Resizable(resize => resize.Columns(true))
    .Selectable(selectable => selectable.Mode(GridSelectionMode.Single))
  
    .DataSource(dataSource => dataSource
        .Ajax()
        .Read(read => read.Action("Read", "Salon"))
        .ServerOperation(false)
    )
    .Events(events => events.Change("grid_selected"))
)
$("#FilterShowAll").click( function()
 {
    var grid = $("#GridField").data('kendoGrid')
    grid.dataSource.filter({});
grid.pagable(false); // Error here...
});
OnaBai
Top achievements
Rank 2
 answered on 10 Sep 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
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?