Telerik Forums
Kendo UI for jQuery Forum
4 answers
314 views
Hi!
I started using the new filter row and I think it's great!
However, in busy grids with several columns it looks awful. The filter controls don't resize, so in narrow columns it get's cut off and in wide columns the space is wasted.

I created a helper function that through some event handlers, attempts to fix this. All you need to do is call "grid.autoFixFilterWidth()"

http://jsbin.com/wipazupexaqi/3/edit


I really wish something like this would be implemented by default, hopefully using css rules and not some hacky js like my solution, but in the mean time this works for me. Ymmv.
Hope it helps someone!
Regards

Andrés
Alexander Popov
Telerik team
 answered on 10 Mar 2015
2 answers
481 views
I'm sure I'm missing something simple here, but I am trying to develop a site for a British based group and I'm trying to display a set of values in GBP. I have included the culture file and when I display currency, I see Â£20.00. I've spent some time looking and people are are saying that the character encoding is set wrong, changing it to UTF-8 does nothing. I tried to modify the culture file to include £ instead of the actual symbol placed in there, but it's encoding that so I get £ put on the page.
Terry Burns-Dyson
Top achievements
Rank 1
 answered on 10 Mar 2015
3 answers
126 views
Hi,

I have a listview using templates that replaces the <a href="#= Href #"> tag with the correct link eg: <a href="remoteview.html">. However when clicking on the link,
it navigates to the view but doesn't render content with kendo ui. Is this even possible? Or am i doing anything wrong?

Regards,
 
Petyo
Telerik team
 answered on 10 Mar 2015
5 answers
217 views
When using selectable: multiple:row and inline editing, some edits fail.
Edits to not fail when using selectable: true.

To reproduce, use this fiddle: http://jsfiddle.net/GVxkj/15/ 

Click the edit-button, change a value, click the update-button.
The value does not update.
When changing two values, only the first value will change.

Is this a bug or have I done something wrong in the code?
Vladimir Iliev
Telerik team
 answered on 10 Mar 2015
3 answers
257 views
Hi all,

I have defined a tabstrip using MVVM and bound an array as as source like this example shows: http://dojo.telerik.com/OxUna

But when the tabstrip was rendered, no tab is selected. So how to define the default selected tab using MVVM?

Is it there an data attribute like "data-select-tab"? 

Any suggestions?

Regards,
Ralf
Alexander Popov
Telerik team
 answered on 10 Mar 2015
1 answer
218 views
I am initializing data source separately using transport calls. so I have given a time zone value in Schema.timezone property of data source.
also I am assigning value to scheduler.timezone as well. Still the calendar is displayed as per client machine.
I am reading data from remote service, so my requirement is that, all my clients should see same calendar.
I have added timzones.min.js as well.
am I missing anything ?
Vladimir Iliev
Telerik team
 answered on 10 Mar 2015
3 answers
101 views
Hi,

I have the following grid / columns

Left-Operand     Left-Operator     Value      Right-Operator      Right-Operand
                                                        x                    >                            D
        C                       <=                  x                    <=                          D
        B                       <=                  x                     <                           C
        A                       <=                  x                     <                           B
                                                        x                     <                           A

The user needs to fill in the values for A, B, C and D. In such a way that D > C > B > A.

I am using a editable grid with only Left and Right Operands editable, the rest is read only.

How could I enforce such a validation while the user is editing the values?

Thanks 
  
Alexander Valchev
Telerik team
 answered on 10 Mar 2015
2 answers
222 views
Hi,
I have a Grid with a date column. The aim is to manipulate the date field as enabled or disabled. The problem is that the grid's width is set. The Date field when displayed in a grid in enabled mode can be selected and scrolled to the end of the field to see the complete date time. However, in disabled mode the date appears as truncated. 
I've tried to set k-select to display:none but still the wrapper truncates the data. For better visibility, I've changed the background-color to green which is causing the truncation.
Please see the JSFiddle here -> http://jsfiddle.net/devna_sahai/tzL8anj8/20/

Steps to duplicate the issue in JSFiddle provided above :-
1. Click on Edit button for a row
2. Select the same row again

Help Required: How can I get the whole text to be displayed when the date is disabled?



Thanks 
Devna

Devna
Top achievements
Rank 1
 answered on 09 Mar 2015
5 answers
163 views
Hello, 

If i explain technologies currently using in my recent project is jQuery-2.1.1, AngularJs 1.3.12 and Kendo UI v2014.3.1316. I have used grid, dropdownlist, datetimepicker from the kendo UI. but any of these components are not working in any forms except kendo grid.  following was my configurations. 

Please advice how to fix this...

//HTML
<input type="text" name="DTEndDate"
kendo-date-picker
k-format="'MMMM yyyy'"
k-options="monthSelectorOptions">

<!-- KENDO CSS-->

<link rel="stylesheet" href="assets/libs/kendo/2014.3.1316/styles/kendo.common.min.css"/>
<link rel="stylesheet" href="assets/libs/kendo/2014.3.1316/styles/kendo.default.min.css" />
<link rel="stylesheet" href="assets/libs/kendo/2014.3.1316/styles/kendo.dataviz.min.css"/>
<link rel="stylesheet" href="assets/libs/kendo/2014.3.1316/styles/kendo.dataviz.default.min.css"/>
<link rel="stylesheet" href="assets/libs/kendo/2014.3.1316/styles/kendo.metro.min.css"/>
<link rel="stylesheet" href="assets/libs/kendo/2014.3.1316/styles/kendo.dataviz.metro.min.css"/>
<link rel="stylesheet" href="assets/libs/kendo/2014.3.1316/styles/kendo.default.mobile.min.css" />

<!--//Kendo-->
<script src="assets/libs/kendo/2014.3.1316/js/kendo.all.min.js"></script>
<script src="assets/libs/kendo/2014.3.1316/js/kendo.aspnetmvc.min.js"></script>
<script src="assets/libs/kendo/2014.3.1316/js/kendo.timezones.min.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
















Petyo
Telerik team
 answered on 09 Mar 2015
4 answers
482 views
Hi,

I am concerned about TreeList performance with large datasets (hundreds of thousands of rows). Some other Kendo controls, like Grid, support virtualization and perform well with this many rows (http://demos.telerik.com/kendo-ui/grid/virtualization-local-data). TreeList currently does not support virtualization and slows down during scrolling/expanding/collapsing as the number of rows increases (some browsers are better than others).

I know that TreeList is a brand new control. Do you have plans to add virtualization or otherwise improve TreeList performance with large datasets in future releases?

Thanks.
Ricky Wu
Top achievements
Rank 1
 answered on 09 Mar 2015
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
Marco
Top achievements
Rank 4
Iron
Iron
Iron
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
Want to show your ninja superpower to fellow developers?
Top users last month
Marco
Top achievements
Rank 4
Iron
Iron
Iron
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
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?