Telerik Forums
Kendo UI for jQuery Forum
0 answers
100 views
I've styled my textbox to have a button to search - pretty much identical to functionality and layout to Bing.
Problem is, the autocomplete drop-down list with suggestions is only the width of the input box - how would I add some extra width to it to account for the width of my search button?

Also, how do I set the height to be large enough to fit ALL the suggestions, including any the have been wrapped to another line?
Gabriel
Top achievements
Rank 1
 asked on 29 Feb 2012
3 answers
108 views
Where are the questions & answers I can take a look at from the webinar this past week?

The administrtor of the webinar said he was going to post them to the web site...   
John
Top achievements
Rank 1
 answered on 29 Feb 2012
1 answer
138 views

I'm stuck with a data source and a grid. The data is to be shown in a grid but I can't get it too work.

<div id="grid"></div>
 
            <script>
                $(document).ready(function() {
 
            var d={"count":0,"subTotal":0,"items":{"sku":"dvdwinf","title":"Doctor Who:
 
Inferno","price":19.95,"format":"DVD","url":"drwho/doctor-who-inferno/dvdwinf","quantity":1}}
 
 
                    $("#grid").kendoGrid({
                        dataSource: {
                            data: d,
                            pageSize: 10
                        },
            schema: {
                   data: "items"
                    },
                        height: 250,
                        scrollable: true,
                        sortable: true,
                        pageable: true,
                        columns: [
                            {
                                field: "sku",
                                title: "First Name"
                            },
                            {
                                field: "title"
                            }
                        ]
                    });
                });
            </script>

The data to show will be a from a web service but for now it is hot-wired in there for testing. The JSON object is properly formatted and the EXACT data is used with a jQuery AJAX request elsewhere and used just fine. Any ideas?

Gabriel
Top achievements
Rank 1
 answered on 29 Feb 2012
1 answer
246 views
I'd like to cancel a selection change in the change event based on user input. Is this possible?

Here's a jsfiddle of what I'm attempting to do:
http://jsfiddle.net/latenightcoder/R4mKu/1/
Chris
Top achievements
Rank 1
 answered on 29 Feb 2012
2 answers
212 views
I am trying to debug a call to WCF RIA Service that return JSON data. when using .Ajax it works fine, but does not work when using it for Kendo Grid. I am trying to find out if there are any callbacks for Success or Error for dataSource ?

also Additionally i want to use Paging,sorting and Filtering on server, do you have sample which does it using
 WCF RIA service ?


 <script type="text/javascript">
        $(document).ready(function () {
            $("#grid").kendoGrid({
                dataSource: {
                    type: "json",
                    transport: {
                        read: "http://localhost:50424/Services/Silverlight_WCF_RIA-Web-MyDomainService.svc/JSON/GetSecurity_Users"
                    },
                    schema: {
                        model: {
                            fields: {
                                First_Name: { type: "string" },
                                Last_Name: { type: "string" },
                                Email_Address: { type: "string" }
                            }
                        }
                    },
                    pageSize: 10,
                    serverPaging: true,
                    serverFiltering: true,
                    serverSorting: true
                },
                height: 250,
                filterable: true,
                sortable: true,
                pageable: true,
                columns: [{
                    field: "First_Name",
                    width: 90,
                    title: "First Name"
                }, {
                    field: "Last_Name",
                    width: 90,
                    title: "Last Name"
                }, {
                    field: "Email_Address",
                    title: "Email"
                }
                ]
            });
        });
    </script>
Mike
Top achievements
Rank 1
 answered on 28 Feb 2012
2 answers
280 views
Hi,

I have a grid that allows grid edition and I soon as I add the grid template, I'm no longer be able to edit the cell withing the grid.
Unfortunately I found examples of each of one but not the two mixed together.

I specify the row template like this:
rowTemplate: $.proxy(kendo.template($("#rowTemplate").html()), ds),

The only reason I need the row template in this case is to provide the necessary CSS (text-align:right) to align amount field column.
Maybe this could be achieved in a different way?

Thanks.
Patrick Rioux
Top achievements
Rank 1
 answered on 28 Feb 2012
0 answers
61 views
Hi,

Is it possible to have a more precise date for the next release or get a preview / beta build before the official release? We are starting a new project and heavily interested in upcoming MVVM support.

Thank you!
Etienne
Top achievements
Rank 1
 asked on 28 Feb 2012
1 answer
183 views
 I was using this method:

for each dropdown that I wanted to turn into a Kendo Dropdown I added the class "kendoddl".  then on my document ready I simply called 

 $(".kendoddl").kendoDropDownList();

It worked fine until I added two drop-downs on the same page.  They interfere with each other and stop working after a few clicks.

Is using classes to initialize, as shown above, not supported?



Georgi Krustev
Telerik team
 answered on 28 Feb 2012
4 answers
343 views
Hi,

I just encountered a bug with the Kendo Menu with IE7. If you align your menu to the right of the page, and for some reason you don't have enough place to display the entire sub-menu, the menu won't display correctly or at all.

In the screen shot kendo-menu-ff.png we have the display i got in firefox.

In he screen shot kendo-menu.png we have the display in IE7.

With the IE Developper Tool bar I manage to see that the plugin creates two nested div to contain the animation. The first one, have the overflow property set to hidden and the second one, the nested one, was move to accommodate the lack of space to display it entirely. Hence the result shown earlier. (you can see it by your self with the two other screenshots kendo-menu- 2.pgn and kendo-menu- 3.png).

Since the pluggin write those property directly at the element level, I can't correct it with CSS.

I'm using the kendo-all.js.

Here's my code to generate the menu but I doubt it's my implementation that is at cause. (Without Razor )
<ul id="kendoMenu">
    <li><a href="/">Thèmes</a>
        <ul>
            <li<a href="/Rapports/HEB_QUE">Hébergement au Québec 1</a></li>
            <li><a href="/Rapports/ENT_FRO">Entrées à la frontière</a></li>
        </ul>
    </li>
 
    <li>domirich
        <ul>
            <li><a href="/Account/LogOff">Déconnexion</a></li>
        </ul>
    </li>
    <li>Pilotage
        <ul>
        <li><a href="/Pilotage/Autorisations">Gestion des autorisations</a></li>
        <li><a href="/Pilotage/Sources">Gestion des sources</a></li>
        <li><a href="/Pilotage/Concepts">Gestion des thèmes</a></li>
        </ul>
    </li>
</ul>

And here how I initialise the menu :
<script type="text/javascript">
    $(document).ready(function () {
        $("#kendoMenu").kendoMenu(
        {
            direction: "bottom"
        });
    });
</script>

Please, tell me how to fix this.
Kamen Bundev
Telerik team
 answered on 28 Feb 2012
5 answers
898 views
When you combine column grouping and a grid template, as soon as you group a column the remaining columns grid are out of sync.
Anyone as a solution for this or this is a bug?
Patrick Rioux
Top achievements
Rank 1
 answered on 28 Feb 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?