Telerik Forums
Kendo UI for jQuery Forum
0 answers
88 views
I have observed strange behaviours in the tabstrip section of a detail grid. I have a few checkboxes on a popup window after selecting ia popup from the tabstrip. whenever I click a checkbox, 1 or 2 others are selected automatically.

Same for buttons on a tabstrip section of a detail grid. Whenever I click on one button, the other button is highlighted, But the problem is the wrong button is always selected.

Does anybody knows why??
George
Top achievements
Rank 1
 asked on 04 Apr 2012
4 answers
214 views
Hi I am using the example for form binding and is not working at all, when I run it gives the message in the title.

$(document).ready(function () {
        var viewModel = kendo.observable({
            email: "someemail@somesite.com",
            password: "p@ssword",
            passwordConfirmation: "p@ssword",
            confirmed: false,
            register: function (e) {
                e.preventDefault();
 
                this.set("confirmed", true);
            },
            startOver: function () {
                this.set("confirmed", false);
                this.set("email", false);
                this.set("password", "Male");
                this.set("passwordConfirmation", "John");
            }
        });
 
        kendo.bind($("#example"), viewModel);
    });

The HTML is very similar to the one on the website as well.

<div id="example" class="k-content">
    <div id="loginForm">
                
        <div id="description">           
            <p>Some Text</p>
        </div>
         
        <div id="login">
            <h2>
                Want us to get in touch with you</h2>
            <br />
            <form>
                <label>
                    Email:
                    <input data-bind="value: email" /></label>
                <br />
                <br />
                <label>
                    Password:
                    <input data-bind="value: password" /></label>
                <br />
                <br />
                <label>
                    Confirmation:
                    <input data-bind="value: passwordConfirmation" /></label>
                <br />
                <br />
                <button data-bind="enabled: agreed, click: register">
                    Register</button>
                <br />
                <div data-bind="visible: confirmed">
                    <h4>
                        Confirmation</h4>
                    <div>
                        Thank you for your registration, <span data-bind="text: email"></span>                                                                                                 
                        <br />
                        <br />
                        <button data-bind="click: startOver">
                            Start Over</button>
                    </div>
                </div>
            </form>
        </div>
         
    </div>
</div>


Any ideas???
oakcool
Top achievements
Rank 2
 answered on 04 Apr 2012
6 answers
387 views
Nice-to-have suggestion: the ability to change the slide handle width. The height is fine, but on mobile devices, I think being able to increase the width will make it more user-friendly for the fat-fingered types.
Kjell
Top achievements
Rank 1
 answered on 04 Apr 2012
0 answers
144 views
can you please give the example for how to set the strip lines property in chart

please help me urgently

Thanks in advance.   
Nagarjuna
Top achievements
Rank 1
 asked on 04 Apr 2012
0 answers
71 views
Hi~
I wanna know when chart is loaded completely.
Is there any chart method or function?

I have one more question.

Chart tooltip is showed when user does mouse over, isn't it?
I wanna show chart tootip always on specific area.

Please~

Thank you for your concern.
Min
Top achievements
Rank 1
 asked on 04 Apr 2012
3 answers
261 views
The KendoGrid does not seem to handle some CSS settings within a template.

   $("#myList").kendoGrid({
dataSource: mySource
columns: [
{ field:
"SupplierName", title: "Vendor Name:" },
{ field:
"ColorCode", title: "Vendor Status", template: '<div style="width: 50px; height:20px; background-color: #FF16DC04">#= ColorCode #</div>'}]
});

The # is causing problems even when not grouped together with the equal sign (=).
Deb
Top achievements
Rank 1
 answered on 03 Apr 2012
3 answers
122 views
I've done some preliminary tests and it seems that Kendo templates shouldn't be used for form elements.  While the templates create the forms fine, it's not possible to reference input elements from jQuery, since it's just created in memory.

In other words, click events from buttons don't work.

I just want some confirmation about this.  If I'm wrong, please clarify.

Thanks,

King Wilder
Bruce
Top achievements
Rank 1
 answered on 03 Apr 2012
0 answers
125 views
I want to use a search box that will have some "intelligent" autocomplete to it. For example, if a user enters "c (some text", I want to only suggest based on the text after the (. That part seems easy enough. However, I want to be able to append the chosen id for the autocomplete after the (. Then, if the user enters ", some more text", (the input should look like "c (id1, some more text"), I want to autocomplete after the comma and insert the id at that point.

I'm looking to build a context aware autocomplete that will only present proper options based on the text before it and keep the preceding text because it is useful to the search function.

How would I go about doing this using the Kendo UI Autocomplete control?

Jason
Jason
Top achievements
Rank 1
 asked on 03 Apr 2012
5 answers
159 views
http://screencast.com/t/t90lodAfe

See at about 20 seconds when remove the text in there and try to search for bread...just after that I reload the page and do it again, and it works.
Georgi Krustev
Telerik team
 answered on 03 Apr 2012
1 answer
169 views
I have the following code which works perfectly in Chrome and Firefox, but it does not work in IE9. The server has the correct CORS header Access-Control-Allow-Origin

I don't get any errormsg in IE, but when i start network trace in the F12 developer tools I Can see that it is not trying to read data at all. api.rambase.net is never accessed.
<!DOCTYPE html>
<head>
    <title></title>
    <link href="styles/kendo.common.min.css" rel="stylesheet" type="text/css" />
    <link href="styles/kendo.default.min.css" rel="stylesheet" type="text/css" />
    <script src="js/jquery.min.js" type="text/javascript"></script>
    <script src="js/kendo.web.min.js" type="text/javascript"></script>
</head>
<body>
    <div id="grid"></div>
    <script>
        $(document).ready(function () {
            var myDatasource = new kendo.data.DataSource({
                transport: {
                    read: {
                        url: "http://api.rambase.net/sales/customers/",
                        dataType: "json",
                        data: {
                            access_token: "pJqsseeESsdfse-d9_8CMQPsLg2"
                        },
                        beforeSend: function (req) {
                            req.setRequestHeader('Accept', "application/json");
                        }
                    }
                },
                schema: {
                    data: "customers.customer"
                }
            })
 
            $("#grid").kendoGrid({
                dataSource: myDatasource
            });
        });
 
    </script>
</body>
</html>
rgullhaug
Top achievements
Rank 1
 answered on 03 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?