Telerik Forums
Kendo UI for jQuery Forum
1 answer
91 views
Hi 

I have an issue with the Kendo Treeview with checkboxes while refreshing it with the data having its children unchecked (with property isChecked in JSON for treeview as false)

Please find the working example in the JSFiddle link -  http://jsfiddle.net/YdmJE/29/


Regard
Arun
Alex Gyoshev
Telerik team
 answered on 09 Dec 2013
6 answers
171 views
i have a seriesClick on dashboard chart,
when i try with ipad, i click the chart and drag down, all i want is scorll window, but kendo trigger the seriesClick function , any one can help?
Dimiter Madjarov
Telerik team
 answered on 09 Dec 2013
1 answer
274 views
Greetings,

I have a requirement to create a treeview with checkboxes with the following details:

  • The tree will have a lot of items in it, so it should load nodes dynamically upon expansion.  My assumption is that this means I will be binding to a Hierarchical DataSource
  • Special behavior:  When an item is checked, all children should be checked.  (Unchecking should not uncheck the children, it's just the check operation that propagates downwards)
  • Impotant: The built-in "checkChildren" behavior does not work for this requirement as it enables tri-state and links the checked state of the parent to the checked state of the children, which is not desired.

This combination is proving to be very challenging to implement.   I have tried using a template for the nodes and providing my own checkbox, however the checkbox doesnt seem to bind properly (and anyways, two way binding would be needed and I don't have any idea how to enable that).


Any advice on how to approach this?

Alex Gyoshev
Telerik team
 answered on 09 Dec 2013
1 answer
132 views
Hello Guys,


I have read this post here:
http://www.kendoui.com/forums/kendo-ui-mobile/application/ios-7-safari-button-bar-block-part-of-the-page.aspx
Because I have the same problem : the Safari bar at the bottom which I want to get rid of~.
I have tried the "useNativeScrolling to true", but it's truncating all of my views, even if I add this code:
<div style="height:1000px">
...
</div>

I saw that there was a talk about a bug on Kendo and something was in progress: any news on that?


Regards,
Chris.
Petyo
Telerik team
 answered on 09 Dec 2013
1 answer
111 views
There are 2 major holes in the tab control that need to be fixed:

1. You should be able to set a field that is used when data bound to define which is the selected tab. This is especially important when working with Knockout or MVVM to keep the model clean instead of having to do it manually after binding.

2. There needs to be a field setting that allows you to specify the element per tab that will be used for the content. You need this for example when you have a grid that is getting filtered based on the tab click. Otherwise the grid ends up outside the tab area and looks bad visually because it's not really content.

These are 2 pretty basic things. I'm hoping these can be added to clean up this control.

Thanks!
Kiril Nikolov
Telerik team
 answered on 09 Dec 2013
3 answers
112 views
How do you show the details to the user without needing to be in edit mode?

Like in month view I'm seeing 8-12 characters of the event title...

There doesn't seem to be an event click event to hook into to open a window or something, know what I mean? 
Chris
Top achievements
Rank 1
 answered on 07 Dec 2013
3 answers
335 views
Hi there,

I am a newbee for KendoUI and trying few examples. In the sample application I am trying to develop I have a home page with links to other pages. Since it doesn;t need any Kendo support I created a links using a generic HTML list items and assign links to it. In the target pages I expect to have drawers. But they do not work as expected. 

Home page,

01.<div id="home-view" data-role="view" data-layout="home-layout" >
02.<div class="main-header"  >
03.<div class="logo"><img src="assets/img/rgb_medium.png"></div>
04.</div>
05. 
06.<div class="top-nav">
07.<ul>
08.<li class="active"><a href="#">Home</a></li>
09.<li ><a href="crm_home.html"> Mobile CRM</a></li>
10.<li ><a href="www.google.com"> Mobile Service</a></li>
11.<li ><a href="bar.html"> Sync Data</a></li>
12.<li ><a href="#clear"> Clear Data</a></li>
13.<li ><a href="#about"> About</a></li>
14.<div class="clear"> <div>
15.</ul>  
16.</div
17.<div class="clear"> <div>
18.</div>


The bar.html which is in the same folder has following code in it.

01.<div id="bar" data-role="view">
02.    <p>I am remote view, my ID is "bar", but my relative path is "bar.html"</p>
03.    <p>Swipe to reveal the drawer</p>
04.</div>
05. 
06.    <!-- remote view is listed with its relative path "bar.html", not its ID "bar" -->
07.    <div data-role="drawer" >
08.        <ul data-role="listview">
09.            <li><a href="#foo">Foo</a></li>
10.            <li><a href="#barhtml">Bar</a></li>
11.        </ul>
12.    </div>


This will not show it as a drawer but show everything as a plain html list when I click the Sync Data link in home page. 


But if I add a button to the home page with data-role="button" and put the same link the drawer works like a charm.

In home page ,
1.<div id="foo" >
2.            <a href="bar.html" data-role="button">Load remote View</a>
3. </div>



So it seems I have to have the links in the source page according to a Kendo convention to get the drawer working in the target page. What should I do to achieve what I expect.

In more general terms, is it a bad practice to mix generic HTML and Kendo UI convensions?


Thanks in advance,
Ish
Asat
Top achievements
Rank 1
 answered on 07 Dec 2013
2 answers
140 views
Dear Kendo Team,
I keep the settings of the datasource of each grid , in database ,(Paging,Sorting,Filtering,Aggregate and Grouping) as it treats server-side and this is more confortable for the client.
Grouping works as expected when is fired with drag&drop event, but i doesn't work when I send the grouping option without event triggered....
So the question is : how can I emulate this event in order to retrieve the grid grouping following the settings send... (code below, the parameterMap function used)

function paramCustomFunc(options, operation) {
    var KendoOptionGrid = FormatGridOptions(options);//format options
    var userSettings = null;
    if (ArrayFistLoad == null)
        ArrayFistLoad = new Array();
    if (ArrayFistLoad[ActiveGrid.Name] == null) {//Ensure that it first time that datasource read is called in order to apply the user custom settings
        if (PreferenceUser != null) {
            var data = PreferenceUser.data.Data[0];//retrieve data preference
            for (var i = 0; i < data.GridSettings.length; i++) {
                if (data.GridSettings[i].Datagrid == ActiveGrid.Name) {//page can contain more than 1 datagrid, so find the good settings related to datagrid
                    userSettings = data.GridSettings[i];
                    break;
                }
            }
        }
 
    }
    if (userSettings != null) {
 //if it first time and i've got specific settings, apply it 
        if(userSettings.Paging != null){
            KendoOptionGrid.Paging.page userSettings.Paging.page;
            KendoOptionGrid.Paging.skip = userSettings.Paging.skip;
            KendoOptionGrid.Paging.take = userSettings.Paging.take;
            KendoOptionGrid.Paging.pageSize = userSettings.Paging.take;
        }
        KendoOptionGrid.Grouping =  userSettings.Grouping;
        KendoOptionGrid.Filtering = userSettings.Filtering;
        KendoOptionGrid.Sorting = userSettings.Sorting;
        KendoOptionGrid.Aggregates = userSettings.Aggregates;
         
    }
    ArrayFistLoad[ActiveGrid.Name] = 1;
    return JSON.stringify({ optionGrid: KendoOptionGrid, operation: operation });
}
Thanks for your answer.
Best regards
HUA
Top achievements
Rank 1
 answered on 06 Dec 2013
5 answers
241 views
I'd like to use a listview to display the property name value pairs in a listview format.   Given the nice auto formatting of <label><input /></label> structure of splitting each cell... how would one do that with a single object?
Alexander Valchev
Telerik team
 answered on 06 Dec 2013
5 answers
204 views
Hello,

Does Datepicker depends on JQuery version? I have both JQuery-1.8.2 and jQuery-2.0.3 in my Scripts folder. Please see below how it is referenced in BundleConfig.cs and _Layout.cshtml. However, the DatePicker does not show up and it's giving an error for the Date format. Please suggest.

BundleConfig.cs
bundles.Add(new ScriptBundle("~/bundles/site").Include(
"~/Scripts/jquery-{version}.js",
"~/Scripts/jquery-ui-{version}.js",
"~/Scripts/jquery.unobtrusive*",
"~/Scripts/jquery.validate*",
"~/Scripts/site.js"
));

undles.Add(new ScriptBundle("~/bundles/jquery").Include(
"~/Scripts/jquery-{version}.js"));

bundles.Add(new ScriptBundle("~/bundles/kendo").Include(
"~/Scripts/kendo/kendo.all.min.js",
"~/Scripts/kendo/kendo.aspnetmvc.min.js"));
bundles.Add(new StyleBundle("~/Content/kendo/css").Include(
"~/Content/kendo/kendo.common.min.css",
"~/Content/kendo/kendo.default.min.css"));

_Layout.cshtml
@Styles.Render("~/Content/css")
@Styles.Render("~/Content/kendo/css")
@Scripts.Render("~/bundles/modernizr")
@Scripts.Render("~/bundles/jquery")
@Scripts.Render("~/bundles/kendo")
Steve
Top achievements
Rank 1
 answered on 06 Dec 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
Application
Drag and Drop
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?