Telerik Forums
Kendo UI for jQuery Forum
1 answer
348 views
Hi everyone,

I'm quite new to KendoUI but what I have seen so far is really cool :)

Actually I'm trying to edit a date with a datepicker. When I initialize the datepicker a selected date won't be displayed and I don't know why.
Even if I call the basic datepicker by this:
$("#datum").kendoDatePicker({});
no selected date will be displayed althought dates can be selected.

My original code looks like this:
var value = "12.06.2012";
$("#datepicker").kendoDatePicker({
    culture: "de-DE",
    format: "dd.MM.yyyy",
    value: value
});

When I open the datepicker the correct value (12.06.2012) is selected in the "dropdown", but nothing is show in the datepicker's input... :( Btw: No errors in the Firebug console

Any help is appreciated!

Thanks and cheers,
Chris


// Update: I'm using:
Kendo UI v2012.2.710
jQuery v1.7.1
Firefox 15.0.1
Iron (based on Chrome) 20.0.1150.1
Windows 7



Chris
Top achievements
Rank 1
 answered on 09 Oct 2012
3 answers
987 views
Hi,
When I delete a row from my grid, I need to refresh the same page because other data on the page depends on items in the grid.
Is there someway I can do this?
Thanks,
Murph
Thomas
Top achievements
Rank 1
 answered on 09 Oct 2012
2 answers
251 views
Here's a puzzle... I am building an editor that contains some HTML, including some image tags. In IE the first image displays in the editor as a broken image, while any subsequent images display correctly. This behaviour is not exhibited in Chrome. I've modified the HTML in the editor any way I can to try to "fix" this but no matter what the first image is broken in IE.

Any help?

EDIT:
This effect only occurs when the first image is on the server. If the first image is off the server (e.g. I take a URL from any image on the internets) then it's all good.
Any idea why IE would choose to not display the first image if it's on the server?
FYI: it's not a permission issue (I think) since the account used to run .NET has access to the images, and no suspicious events are being logged that suggests the server is denying the first image.
David
Top achievements
Rank 1
 answered on 09 Oct 2012
0 answers
140 views
Please see attached screenshot from Internet Explorer 8. My validation tooltips appear behind DropDownLists. I'm no css guru so I would appreciate some help. As far as I can tell the tooltips have a higher z-index than the DropDownLists.
Remco
Top achievements
Rank 1
 asked on 09 Oct 2012
0 answers
91 views
Do you have sample asp.net mvc web application with Kendo UI , not just individual control level example . I am expecting a business level application sample?  like shopping cart
 
If you have one please send it to me I would like to see how i can join all controls


Regards
Gopi
Gopi
Top achievements
Rank 1
 asked on 09 Oct 2012
3 answers
342 views
Just updated to version 2012.1 322 and a grid has stopped sizing the height correctly in Firefox. It displays with only a height equivalent to one row, but it can still be scrolled. I've attached a screenshot, normally this should size to show 10 rows.

The grid in question has a detail template, but does not have an explicit template for the master rows. Here's my main setup script:

var dataSource = new kendo.data.DataSource({
    data: gblProductsData,
    schema:
    {
        model:
        {
            fields:
            {
                id: { type: 'string' },
                referencecode: { type: 'string' },
                description: { type: 'string' },
                category: { type: 'string' },
                unitofmeasureid: { type: 'string' },
                buffergroupid: { type: 'string' },
                defaultorderworkflowtypeid: { type: 'string' },
                isarchivedproduct: { type: 'boolean' }
            }
        }
    },
    pageSize: 10
});
 
//Reset grid
$('#divProductGrid').html('');
 
//Setup grid
gblDivProductGrid = $('#divProductGrid').kendoGrid({
    dataSource: dataSource,
    autoBind: true,
    height: 'auto',
    scrollable: true,
    filterable: true,
    sortable: true,
    groupable: false,
    pageable: true,
    toolbar: productGridToolbarTemplate,
    detailTemplate: productGridDetailTemplate,
    detailInit: InitialiseProductDetails,
    detailExpand: ProductDetailExpand,
    detailCollapse: ProductDetailCollapse,
    columns:
    [
        {
            field: 'referencecode',
            title: 'Reference Code'
        },
        {
            field: 'description',
            title: 'Description'
        },
        {
            field: 'category',
            title: 'Category',
            filterable: false
        },
        {
            field: 'unitofmeasureid',
            title: 'Unit Of Measure',
            filterable: false
        },
        {
            field: 'buffergroupid',
            title: 'Buffer Group',
            filterable: false
        }
    ]
});

Changing 'scrollable' to 'false' fixes this problem, though of course the grid won't resize horizontally when the window resizes. It all still works fine  in Chrome and IE.
Drew
Top achievements
Rank 1
 answered on 09 Oct 2012
1 answer
133 views
I'm trying to have multiple value axes with CategoryAxis date type. See the following jsFiddle, and how the dates are not labeled on the x-axis: http://jsfiddle.net/gavinr/Q6ust/


Is this an issue with Kendo or am I doing something wrong?
Iliana Dyankova
Telerik team
 answered on 09 Oct 2012
0 answers
156 views
Hi,

I am using kendoui checkbox template treeview. When i am selecting the child node i am able to get the 
id of that child. Then how can i get the id of that parent and how can i delete the selected child node with that id.

Please provide me an example or sample

Thanks and Regards
Srinivas
srinivas
Top achievements
Rank 1
 asked on 09 Oct 2012
4 answers
355 views
Hi,

I am using kendo grid with paging.In my grid i have checkbox for selecting the grid row.
when i am using paging when I select a row in page 1 and after if go to page 3 and select a row and save the data to database.
The problem is when I select the page 3 row the page 1 row which is selected is not saved.
Even if I change the grid page to 1 the selected row is deselected automatically.
Is there any solution to solve the problem.

please help...

Regards,
Sam.
Sameer
Top achievements
Rank 1
 answered on 09 Oct 2012
4 answers
1.3K+ views
According to the documentation, the 'remove' event is called before a row is actually removed from a grid. I would however like to know once a row has been removed from the grid. Is this possible?

I have a hidden input that keeps the ids in a hidden input field, so that nothing gets modified until the user hits submit. I would like a way to update the input once the row has been removed (because the remove event fires BEFORE the row has been removed, I cannot trigger based on it).

Any suggestions?
Alexander Valchev
Telerik team
 answered on 09 Oct 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?