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

We'd like to make a link open into mobile safari and not in the web app.  I know that Kendo prevents links in standalone web apps from opening Mobile Safari.

But how do you MAKE it open in mobile safari?  Does anyone have a clue?

we have tried:
1. changing the meta tag "apple-mobile-web-app-capable" to "NO" that did not work
2. change window.navigator.standalone = false.  that did not work
Petyo
Telerik team
 answered on 10 Apr 2012
3 answers
153 views
After spending a decent amount of time trying to figure out why my listview didn't work, I discovered that the following code doesn't work:

    <ul data-role="listview" data-style="inset">
        <li data-icon="toprated">
            <a>Nairobi</a>
        </li>
    </ul>

However this work:

    <ul data-role="listview" data-style="inset">
        <li data-icon="toprated"><a>Nairobi</a></li>
    </ul>

 It seems that adding a space between the <li> and the <a> makes it break, causing no icons or links to work correctly (doesn't load the view but treats it as an external link). This is in build 2012.1.406.

Just wanted to point it out for anybody else who might struggle with this. :-)


Petyo
Telerik team
 answered on 10 Apr 2012
2 answers
448 views
This may be something I have to go and figure out on my own with an external piece of code, but I'm wondering if there's anyone out there that's implemented functionality on the TreeView through when a user right clicks on a node? This has recently come up on a piece of project work and I'd like to know the best way of doing this with the Kendo UI TreeView.

Any help would be appreciated, thanks!
Miguel
Top achievements
Rank 1
 answered on 10 Apr 2012
1 answer
217 views
Hi,

I have been looking for some sort of help regarding filtering for cascading dropdown, below is my code:

var StatedataSource = new kendo.data.DataSource({
            transport: {
                read: {
                    type: "POST",
                    url: "GetDocumentType.asmx/GetStateList",
                    contentType: 'application/json; charset=utf-8',
                    datatype: "json",
                    json: false
                },
                parameterMap: function (options) {
                    return JSON.stringify(options);
                }
            },
            serverFiltering: true,
            schema: {
                data: "d",                
                total: function (result) {
                    result = result.d || result;
                    return result.length;
                }
            }
        });


        $("#states").kendoDropDownList({
            autoBind: false,
            dataTextField: "StateName",
            dataValueField: "StateID",
            dataSource: StatedataSource
        });

        $("#countries").kendoDropDownList({
            dataTextField: "CountryName",
            dataValueField: "CountryID",
            dataSource: {
                serverFiltering: true,
                transport: {
                    read: {
                        type: "POST",
                        url: "GetDocumentType.asmx/GetCountryList",
                        contentType: 'application/json; charset=utf-8',
                        datatype: "json"
                    },
                    parameterMap: function (options) {
                        return JSON.stringify(options);
                    }
                },
                schema: {
                    data: "d",
                    total: function (result) {
                        result = result.d || result;
                        return result.length;
                    }
                }
            },
            change: function () {
                StatedataSource.filter({
                    field: "CID",
                    operator: "eq",
                    value: parseInt(this.value())
                });
            }
        });


I want to know that how server filtering exactly works? Although I specified filter , all the data from the web service returns and shown in the dropdown. Did I miss something?

Thanks,
Mangesh
Nathan
Top achievements
Rank 1
 answered on 09 Apr 2012
0 answers
118 views
Hello. I would like to inquire whether it is possible to customize the various Kendo UI widgets without using themebuilder but custom css files linked to my html page. Are there any examples I could use as reference? Thank you.
Antonios
Top achievements
Rank 1
 asked on 09 Apr 2012
1 answer
74 views

I am trying to consume a json data source that returns @ and # characters in the fieldnames.   Apparently these characters are causing the kendoGrid template creation to fail.   Any workarounds (no, I can't change the data source)?

See below:

"Results": {
     "@ViewName": "WFP_MacroDemandForecast",
     "RowSet": {
         "@ColDims": "Workforce Planning Value",
         "Rows": [
             {
                 "WorkforcePlanningMeasure": {
                     "@Name": "HC Demand",
                     "@DimName": "Workforce Planning Measure",
                     "@ID": "Headcount Demand",
                     "#text": "HC Demand"
                 },
                 "Value": "0",
                 "ChangeRate": "0",
                 "BaseYear": "0",
                 "ForecastDriver": "0",
                 "_5YearGoal": "0",
                 "Year1": "0",
                 "Year2": "0",
                 "Year3": "0",
                 "Year4": "0",
                 "Year5": "0"
             },

Steven
Top achievements
Rank 1
 answered on 09 Apr 2012
1 answer
206 views
Hello, I want to display a area chart for a height profile. Then I want to be able to set some markers on the profile. I was trying to use a scatter chart for that. But if I add two series to a chart ( scatter and area type ) only one of the two series is displayed.

Is it possible to mix a area series with a scatter series?
Any other way to position markers on some positions in the chart area?

Thanks a lot
Hans
Iliana Dyankova
Telerik team
 answered on 09 Apr 2012
5 answers
144 views
When I try to set multiple group-by columns by dragging a column into a position that isn't at the end, I get a strange behavior where the column heading I'm dragging gets stuck when I release the mouse. 

See this JSFiddle, an example provided by from another thread in this forum.

Browser Detail: Google Chrome 18, Win7 64-bit.

This happens on every groupable:true grid I've used with a groupFooterTemplate, but I don't have the problem when using IE9, or FF10.0.2 on the same machine.




Nikolay Rusev
Telerik team
 answered on 09 Apr 2012
1 answer
923 views
Hi,

    I want to change the window title style property example I want to do bold the name of the kendo window.

Please guide me to this feature.

Thanks in advance.

Sourav


Richard
Top achievements
Rank 1
 answered on 09 Apr 2012
2 answers
161 views
Hello guys,
I'm using the scroll view like in your example for displaying html pages. But could not able to display pages like images.
It is showing only contents and not scroll-view functionality. I just want to display 1 page at a time.
I am attaching my source code for scroll-view.
Any ideas? A simple sample would be much appreciated. 





Prashant
Top achievements
Rank 1
 answered on 09 Apr 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)
SPA
Filter
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
MultiColumnComboBox
Chat
DateRangePicker
Dialog
Checkbox
Timeline
Drawer
DateInput
ProgressBar
MediaPlayer
ImageEditor
OrgChart
TextBox
Effects
Accessibility
PivotGridV2
ScrollView
BulletChart
Licensing
QRCode
ResponsivePanel
Switch
Wizard
CheckBoxGroup
TextArea
Barcode
Breadcrumb
Collapsible
Localization
MultiViewCalendar
Touch
RadioButton
Stepper
Card
ExpansionPanel
Rating
RadioGroup
Badge
Captcha
Heatmap
AppBar
Loader
Security
Popover
DockManager
FloatingActionButton
TaskBoard
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
TimePicker
DateTimePicker
RadialGauge
ArcGauge
+? more
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?