Telerik Forums
Kendo UI for jQuery Forum
0 answers
145 views
The panel bar being used for the nav menu down the left side of the demos page is clearly different to the panel bar samples here: http://demos.kendoui.com/panelbar/index.html

Does anyone have any samples with a panel bar or other control being themed different from the others?

I've looked throught the examples.css and kendo.examples.js files with no luck. Being a C# programmer, Javascript is a bit alien to me...
Gabriel
Top achievements
Rank 1
 asked on 26 Nov 2011
0 answers
118 views
Opera 11.52

After re-opening of the window. Used Win.data("kendoWindow").open();. Begins to slow down when you move.
Arni
Top achievements
Rank 1
 asked on 26 Nov 2011
1 answer
221 views
Sorry for this simple question, but I'm not sure what to copy over into my MVC project and whhat folder structure they should be copied over to.
http://www.kendoui.com/documentation/introduction.aspx

  1. Download Kendo
  2. Copy the Kendo UI CSS and JavaScript resources to your project

The bold line above: I'm not sure what files or folders need to be brought over.

thanks for any help.

Dimo
Telerik team
 answered on 25 Nov 2011
0 answers
106 views
Hi,

I’m trying to integrate ASP.Net GridView control with Kendo UI Grid control.

Please let me know how I can integrate ASP.Net GridView Template Columns with Kendo UI Grid control and how can I make Sorting functionality into Gridview with the use of Kendo UI control.

Thanks.

Nitin
Top achievements
Rank 1
 asked on 25 Nov 2011
3 answers
139 views
Hi,

I have two grids and what to dag items from "A" to "B" grid, also need to drag-drop within grid "B".

I looked at the treeview drag-drop example but not sure how to do this with Grid, also I don't want to move items from "A" to "B", more copy from "A" to "B".

A simple example would be great.
Georgi Tunev
Telerik team
 answered on 25 Nov 2011
5 answers
227 views
Two datepickers one the same page. Every time i try to set the first one to Jabuary it's jumping to the previous december:
<input id="datepickerF" value="" style="width:150px;">
<input id="datepickerT" value="" style="width:150px;">


$(document).ready(function() {

 $("#datepickerF").kendoDatePicker({
            
                        // defines the start view
                        startView: "year",

                        // defines when the calendar should return date
                        depth: "year",

                        // display month and year in the input
                        format: "MMMM yyyy",
          
                    });
 $("#datepickerT").kendoDatePicker({
                
      // defines the start view
                        startView: "year",

                        // defines when the calendar should return date
                        depth: "year",

                        // display month and year in the input
                        format: "MMMM yyyy",
                        });
    });



Marcus



Marcus
Top achievements
Rank 1
 answered on 24 Nov 2011
2 answers
197 views

I'm trying to filter a data source with the data bound to a remote source as per the Grid/Remote-data.html sample.
I've made some mods and nothing seems to happen. I'm trying to filters the results by ShipName.

<script>
   $(document).ready(function() {
      var sharableDataSource = new kendo.data.DataSource({
        type: "odata",
        transport: {
        },
        pageSize: 10,
        serverFiltering: true,
        serverPaging: true,
        serverSorting: true,     
      });
 
      $("#grid").kendoGrid({
         dataSource: sharableDataSource,
         height: 250,
         scrollable: true,
         sortable: true,
         pageable: true,
         columns: ["OrderID", "CustomerID", "Freight", "ShipName", "ShipCity"]
      });
                        
      $("#apply").live("click", function() {
         sharableDataSource.filter({ field: "ShipCity", operation: "eq", value: "Reims" });
      });
   });
 
</script>

Gabriel
Top achievements
Rank 1
 answered on 24 Nov 2011
2 answers
114 views
I'm using a XML file returned from my server with a Data Source. The XML returned only contains a smidge of info on each item.

When applying a filter, is it possible if the filtering is done on the server, filter by a field that is not returned to the data source?
E.G. XML file doesn't contain weight of an item and I would like to apply a filter by weight?
Gabriel
Top achievements
Rank 1
 answered on 24 Nov 2011
5 answers
215 views
Let's say I want to pre-expand a panel. How would I go about doing that? I tried to utilize the methods per the guide, but with all my efforts I still can't manage to do this. Could I get a direct example in basic html/javascript for how to pre-expand a panel or another method that panels support? I just don't get it :-/ (not a big js guy.)
Luka
Top achievements
Rank 1
 answered on 24 Nov 2011
1 answer
89 views
I want to use kendo ui to crate multiple  bar charts in a page.  I am using the theme: "BlueOpal", however ,only the first chart has blue color, all the others are just black. I tested this page on IE, safari, opera, all work.
Is there anyone can give me a fix,thanks.

The code is blow:

function createChart()
  {                    
      $("#tabstrip-1").kendoChart({theme: "BlueOpal",
                              legend: { position: "bottom"},
                              seriesDefaults: { type: "column"},
                               series: [{ name:"samples", data: [58276, 57987, 96199, 59018, 54371, 73841, 71390], color:"red"}],
                              valueAxis: { labels: {format: "{0}"  }},
                              categoryAxis: { categories: ['2011/11/17', '2011/11/18', '2011/11/19', '2011/11/20', '2011/11/21', '2011/11/22', '2011/11/23'], labels:{rotation:3, format: "{0:C}"}},
                              tooltip: { visible: true, format: "{0}"}
                              });
                              
$("#tabstrip-2").kendoChart({theme: "BlueOpal",
                              legend: { position: "bottom"},
                              seriesDefaults: { type: "column"},
                               series: [{ name:"samples", data: [58276, 57987, 96199, 59018, 54371, 73841, 71390]}],
                              valueAxis: { labels: {format: "{0}"  }},
                              categoryAxis: { categories: ['2011/11/17', '2011/11/18', '2011/11/19', '2011/11/20', '2011/11/21', '2011/11/22', '2011/11/23'], labels:{rotation:2, format: "{0:C}"}},
                              tooltip: { visible: true, format: "{0}"}
                              });
}
T. Tsonev
Telerik team
 answered on 24 Nov 2011
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
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?