Telerik Forums
Kendo UI for jQuery Forum
0 answers
158 views
Hello,

I have a combobox in the inline edit mode of the grid. (PropertyName is the datatextfield and PropertyID is the datavaluefield). The combo box works fine in the edit mode. When I try to add a new record, it works fine for the first record but if add a second record it gives me a javascript error in the kendo.min.js.

Please find the attached javascript file.

Thank you
Kavitha
Kavitha
Top achievements
Rank 1
 asked on 25 May 2012
0 answers
155 views
Hi,

Im implementing a kendo ui listview in my asp.net mvc3 application. Im able to edit  all the fields but I want to implement a drop down list in one of my fileds after editing and assign static values to it which reflects back to the listview and as well as to the controller. Can u jst plz provide any sample or information  for this.


Thanks and regards,
Bhavani,
Bhuvis Info Solutions.
Durga Bhavani
Top achievements
Rank 1
 asked on 25 May 2012
14 answers
327 views
When I set the tooltip format on the range slider, it's not changing the tooltip format, it's changing the tick label formatting...tooltip is entirely unaffected.
sitefinitysteve
Top achievements
Rank 2
Iron
Iron
Veteran
 answered on 25 May 2012
3 answers
152 views
I have a tabstrip-like scenario

Page loads to an overview screen, when a button is clicked an iframe changes its src, then the overview div is hidden, and the div with the iframe is shown

Problem is the rangesplitters in the iframe all come out 1px wide...so then if I re-change the src via the JS console, it loads in fine (bypass the whole div\swap thing).
sitefinitysteve
Top achievements
Rank 2
Iron
Iron
Veteran
 answered on 25 May 2012
2 answers
115 views
I have a masterpage which has a script in document.ready to initalize the root splitter

I then have a child page where I'm initalizing a second splitter in one of the masterpages splitter panes....again in document.ready

The problem is the root one I don't think has finished rendering before the child one triggers so the child is small and not sized properly.  Is there something I can do to fix that?
sitefinitysteve
Top achievements
Rank 2
Iron
Iron
Veteran
 answered on 25 May 2012
5 answers
287 views
ComboBox scrollbar does not work with IE 9. The combobox is closed when trying to scroll. It work fine for Firefox and Chrome.

Please let me know your comments.

Thanks,
Frank
Georgi Krustev
Telerik team
 answered on 25 May 2012
1 answer
148 views
I am wondering if there are any animation or timing settings for the splitter (or other controls).
The colapse is just a little too fast. It feels a bit jarring and I was hoping to be able to slow it down a bit. This being built on jQuery I would think it is possible.

Thanks,
Craig
Alex Gyoshev
Telerik team
 answered on 25 May 2012
1 answer
538 views
Hi,

I asked a question earlier about styling the grid. I've read the documentation supplied and have been playing with firebug to get the styling options I need to mimic CRM.

I've got stuck trying to make the cells in the header smaller in height. Can anyone tell me where I'm going wrong? I've added the following styles (bold bit isn't doing what I'd like them to):

 <style>
   .k-grid { border-bottom: none; }
   .k-header { background-color:#F5F7F9;color:black;font-family:tahoma;font-size:11px; }
   .k-header.k-link { color:black; }
   .k-state-selected { background-color:#A7CDF0;background-image:none;color:black;}
   .k-alt.k-state-selected  { background-color:#A7CDF0;background-image:none;color:black;}
   tr { font-family:tahoma;font-size:11px;color:black;border-bottom:solid 1px #DBDEE1;height:21px;}
   .k-alt { background-color:white; }
   .k-grid td { padding:0px 10px;margin:0px;border-bottom:solid 1px #DBDEE1; }
   .k-grid-header { padding:0px 0px;margin:0px; }
 </style>
Richard
Top achievements
Rank 1
 answered on 25 May 2012
4 answers
438 views
Hi,
I've got an existing web application that uses your ASP.NET AJAX library. it includes a number of pages where I can see that adding charts generated by the Kendo DataViz components would be really useful.

I've tried creating a test page that incorporates the client-side code from your Kendo 'Basic usage column chart' demo and it works fine. However, as soon as I add a RadScriptManager control to the page (which is needed by other ASP.NET AJAX controls) it generates an error 'Error: Object doesn't support property or method 'kendoChart'.

I've included my test page below. If you remove the three lines starting '<asp:ScriptReference...' the Kendo chart works again. I appreciate there are two copies of the JQuery library being loaded but removing the <script type="text/javascript" src="../Scripts/jquery.min.js"></script> line doesn't help either.

Is it possible to use Kendo components with a page that uses the RadScriptManager and other ASP.NET AJAX controls?


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
    <link href="../Styles/examples.css" rel="stylesheet"/>
    <link href="../Styles/examples-offline.css" rel="stylesheet"/>
    <link href="../Styles/kendo.common.min.css" rel="stylesheet"/>
    <link href="../Styles/kendo.default.min.css" rel="stylesheet"/>

    <script type="text/javascript" src="../Scripts/jquery.min.js"></script>
    <script type="text/javascript" src="../Scripts/kendo.core.js"></script>
    <script type="text/javascript" src="../Scripts/kendo.data.js"></script>
    <script type="text/javascript" src="../Scripts/kendo.chart.js"></script>
</head>

<body>
    <form id="form1" runat="server">
        <telerik:RadScriptManager ID="rsmMain" Runat="server">
            <Scripts>
                <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.Core.js" />
                <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.jQuery.js" />
                <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.jQueryInclude.js" />
            </Scripts>        
        </telerik:RadScriptManager>

        <div id="chart"></div>
        <script type="text/javascript">
            $(document).ready(function () {
                $("#chart").kendoChart({
                    title: {
                        text: "My Chart Title"
                    },
                    series: [
                                 {
                       name: "Series 1",
                       data: [200, 450, 300, 125]
                                 }
                         ],
                    categoryAxis: {
                        categories: [2000, 2001, 2002, 2003]
                    }
                });
            });
        </script>
    </form>
</body>
</html>
Barbaros Saglamtimur
Top achievements
Rank 1
 answered on 25 May 2012
1 answer
79 views
Hi,

Firstly KendoUI is a great js UI suit.
It's nice to have the feature of enabling the grid columns to resize or reorder, I am happy to see this feature in 2012.1.515.
My questions are :
1, It will be an advantage if the resizable attribute can work on a particular column as well as it works on the whole grid.
2, when I set the resizable attribute for my grid, the datasource attribute somehow was disabled, I mean the grid could not get the remote data through the datasource anymore.

did anyone meet a similar problem?
Anyone thinks it is an advantage of what I mentioned in q 1?

Thanks!
b
Top achievements
Rank 1
 answered on 25 May 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?