Telerik Forums
Kendo UI for jQuery Forum
1 answer
235 views

Hi

First of all, this one is build up on an earlier issue :
https://www.telerik.com/forums/update-single-cell-value-on-mvvm-jquery-grid-without-reloading-whole-grid#wHZHTCnTLk2Qy1ZKLvRsvQ

Dojo for the current issue is:
http://dojo.telerik.com/igIkIRoY/16

Issue with this one are lines 161-166.
I want to set the field types, to get the correct column filters, date filter with lte, gt, .. im this example.

Where the fields aren't the special issue here, it's the schema.model object they are in.
As soon as I set the "model", example breaks.

To test it, try dojo as it is and click the "Update date" button.
Nothing will happen.
As soon as you remove lines 161-166 (the model), everything is fine and clicking the button will update the cell in the grid.

I don't know the issue's coming from the special "update single cell value" or from somewhere else, I just cannot say why an empty model object in schema will break the update functionallity.

So hope you can bring a bit of light in the dark.

Greets Robin

Georgi Denchev
Telerik team
 answered on 28 Jul 2021
2 answers
170 views

Hello,

 

I alone of MultiColumnComboBox we can prevent adding custom values with change event follow your sample in ComboBox.

with "change code"

change: function(e) {
            var widget = e.sender;

            if (widget.value() && widget.select() === -1) {
              //custom has been selected
              widget.value(""); //reset widget
            }
          }

Follow this sample work with anyone or the parent(Master) MultiColumnComboBox, but in case child(Detail) of MultiColumnComboBox, It's not working because if I selected parent MultiColumnComboBox first and then child MultiColumnComboBox wil show data follow selected list in parent. In this case ("change code") will prevent any data in child MultiColumnComboBox, as a result, any items in it cannot be displayed.

Please guide me for prevent add custom values in the child(Detail) of MultiColumnComboBox,  if I use Cascading MultiColumnComboBox.

Thank.

Baxing
Top achievements
Rank 1
Iron
Iron
Iron
 answered on 28 Jul 2021
1 answer
529 views

I am using the Kendo UI JQuery timepicker with the defaults and the option dateInput: true. When no time has been entered the placeholder text reads, "hours:minutes AM/PM". This is too long to fit in the box and gets cut off at the letter "A". I would like to shorten it to something like "hh:mm am/pm". How would I do this?


$("#myTime").kendoTimePicker({
        dateInput: true,
    });

Lee
Top achievements
Rank 2
Silver
Bronze
Bronze
 updated answer on 26 Jul 2021
1 answer
193 views

Hi 

I have a remote datasource that renders JSON values. I am trying to show the values in Kendo UI grid (jQuery). 

While the data is being correctly retrieved from the WebAPI (it is a Telerik web service), the grid doesn't display any values. 

Can you please advise what could be going wrong? 

there is no error in the dev console.

JS Bin:  https://jsbin.com/movetajuge/edit?html,js,output

Cheers

Abhishek

Nikolay
Telerik team
 answered on 26 Jul 2021
0 answers
325 views

 

Please see the image marked. Looking for the same functionality at the parent element.

Unnikrishnan
Top achievements
Rank 1
 asked on 23 Jul 2021
1 answer
602 views

hello

I am using kendo grid to display data with AngularJS which uses serve pagination.

Currently it uses the existing icons provided by kendo for first page, last page, previous and next page icons.

I need to update the icons as per the below image.

I am able to update icon for previous (k-i-arrow-chevron-left) and next page (k-i-arrow-chevron-right), but I am unable to update for first page and last page icons.

Also currently it just shows the current page number as per below image. 

But I need current page along with total number of page available between the icons as mentioned in first image. 

Please let me know how to achieve the above mentioned points.

Thanks

Vignesh

 


Neli
Telerik team
 answered on 23 Jul 2021
0 answers
114 views

I have a slider on a page set to a min/max of 0 and 100.   The min/max of this slider is variable and changes depending on what a user has selected in a dropdownlist.  For example, when the user selects an item in the dropdownlist, I change the slider's min/max value of 10 and 50 using setOptions.

 var slider = $("#slider").data("kendoSlider");
                slider.setOptions({
                    min: 10,
                    max: 50,
                    smallStep: 1,
                    largeStep: 5,
                    value: 10
                });

slider.resize();

This seems to work as the slider updates to the properties I set in setOptions.  But after I do this, it doesn't consistently let me jump to a value in the slider.   For example, if I try to click the slider line at 40, the slider won't move to it.  Sometimes it will, sometimes it won't.   If I drag the slider ball to a number it works fine, if I user the increase/decrease arrow buttons it works fine.  But clicking on a number in the slider bar does not work.  

- This jumping to a number in the slider works fine before I dynamically change the properties using "setOptions".
- This problem occurs regardless of what property in the slider I change using "setOptions". 

Any ideas? Thanks.

Werdna
Top achievements
Rank 1
 asked on 22 Jul 2021
1 answer
171 views
I would like to set the column height in the grid. This grid will have one edit column with around 8000 characters. How do I handle this large information in one column.
Georgi Denchev
Telerik team
 answered on 22 Jul 2021
1 answer
345 views

Hi,

We are trying to integrate FileManager component into our WEBUI solution.

We are using non JAX-RS Java back-end implementation.

Our “root” folder on the back-end side contains thousands of  items (files and folders), so the “local” data source definition does not fits our needs.

I would like to know if it is possible to define “Read” HTTP Request body on the following Remote data source definition

                dataSource: {

              pageSize: 7,

                schema: kendo.data.schemas.filemanager,

                transport: {

                    read: {

                        url: "/kendo-ui/service/FileManager/Read",

                        method: "POST"

                    },

 

You are more than welcome to advise any other solution.

Regards,

Oleg

Nencho
Telerik team
 answered on 22 Jul 2021
1 answer
427 views

As of now in navigate event,  we are changing the workDayStart value based on the user selection, however our requirement is the workDayStart  value  has to change when their is an appointment exist in the non working hours. Could some one please help me how achieve this?

 

Ex: The scheduler workDayStart value 8:00 am, however I have an appointment at 6:00 am. So the scheduler has to automatically adjust the workDayStart as 6:00 am and the similar way need to for workDayEnd.

Neli
Telerik team
 answered on 21 Jul 2021
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
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?