Telerik Forums
UI for ASP.NET MVC Forum
1 answer
83 views

Hello Everyone,

Tested in IE 11 and FF 45.0.1 with same results.

Follow demo link here:

https://demos.telerik.com/aspnet-mvc/spreadsheet/disabled-cells

Click the Disable / Enable Quantity Column button.

It appears the cells in Quantity Columns are disabled and user can't type anything on them.

But:

User can press CTRL+C CTRL+V to overwrite the cell value.

Also Dragging the Cell "Fill Handle" will overwrite the cell value

As a side effect, once a cell has been pasted into a disabled cell, the disabled cell becomes editable (even if you paste copying from an already

disabled cell which also means that the disabled attribute is not copied/pasted over)

Best Regards

Mihai
Telerik team
 answered on 06 Apr 2016
1 answer
336 views

Is it possible to set the grid column editor function using the MVC wrappers?

http://docs.telerik.com/kendo-ui/api/javascript/ui/grid#configuration-columns.editor

I only see see EditorTemplateName(string) to specify an MVC editor template. I need to do the editor on client side because I need access to the whole model to dynamically create a control based on model value.

 

Or is it possible to set this function after initialization?

I tried $("#grid").data("kendoGrid").columns[1].editor = function(container, options) {...}

This did not work.

Rosen
Telerik team
 answered on 05 Apr 2016
1 answer
1.0K+ views
I am using ASP.NET MVC 5, C#, Entity Framework 6 and Telerik MVC suite to build my application. Can you please point me to an example that illustrates the usage of stored procedure to load a grid? I need the grid to support paging, sorting and filtering. 
Viktor Tachev
Telerik team
 answered on 05 Apr 2016
2 answers
104 views

Hello.

I'm having some troubles with some grids in Internet Explorer and Mozilla Firefox. I have noticed that the filters windows, the datepickers and dropdowns inside the rows don't appear in the correct position. Those try to appear at the bottom of the page instead of when they should be. Sometimes that makes them to appear and disappear in an instant. This happens when the window is small or the grid is at the bottom of the window. When the window is big there's no problem.

In the browsers Google Chrome and in Opera works perfectly.

I think maybe I have a css/javascript conflict or I'm mising some css/js file.

Thank you.

Nassouh Chehayeb
Top achievements
Rank 1
 answered on 04 Apr 2016
1 answer
835 views

I have a grid that I am using the pop-up editing in. I am using a custom template with drop-downs. The drop-downs have an "Other" option that when selected shows a textbox that you can enter the "Other" details in. This was all in a regular form before I added it to a grid for entry. So I have code for custom validation that would validate these fields if they were showing that worked in a regular form. However, since moving them into the grid pop-up editor, the custom validation is not firing for some reason.

I'm unsure what to do, I have tried to hook the validator up to the grid like so:

$("#DeviceGrid").kendoValidator({
            rules: {
                otherrequired: function (input) {
                    if (input.is("[data-val-otherrequired]")) {
                        var iVal = input.val();
                        var pFld = $("[name='" + input.attr("data-val-otherrequired-parentfield") + "_input']");
 
                        if (input[0].id === "DevicePhoneNum") {
 
                            if (pFld.val().toLowerCase().indexOf("phone") >= 0 && iVal === "") {
                                return false;
                            }
                        }
 
                        if (pFld.val() === "Other" && iVal === "") {
                            return false;
                        }
                    }
                    return true;
                }
            },
            messages: {
                otherrequired: function (input) {
                    return input.attr("data-val-otherrequired");
                }
            },
            validateOnBlur: true
        });

 

But I'm not sure that this is even the correct way of going about it.

Any insight into this would be appreciated!

Thanks,

Dustin

Boyan Dimitrov
Telerik team
 answered on 04 Apr 2016
1 answer
202 views
I'm building a grid that I'd like to be responsive. When the window shrinks horizontally the grid information on bottom such as paging, refresh, and Items per page drops down to the next line. In the example these options become hidden as the window shrinks horizontally. I'm assuming I am missing a call or may have to implement some jquery. I'm wondering why my grid footer information drops down to the next line instead of becoming hidden like in the demo.

Thanks.
Dimiter Madjarov
Telerik team
 answered on 04 Apr 2016
1 answer
107 views
Strange behavior for Buttons in a Window


I am having a problem that I am not really sure if it is being caused by something in my KendoUI Windows, my KendoUI Buttons, my JavaScript, or my MVC razor code, but for starters, I am going to post this in both the Button and Window Forums, so please bear with me.

First, the setup:

I have an MVC app, which has a main view, with several PartialViews on it.

2 of the PartialViews have Kendo buttons where each button opens a different Kendo window; 1 of the PartialViews ('View A') has 2 buttons and the other PartialViews ('View B') has 1 button.

Each of the windows has 3 buttons on it; 'Save', 'Clear', and 'Close'. The code for the buttons and the JavaScript called by them is identical, except, of course, for the object and function names.

Now, my problems:

On 1 of the windows from 'View A' and the window from 'View B', all 3 of the buttons do exactly what they are supposed to do; Save the data, Clear the window, or Close the window.

The second window from 'View A', even though the code is all the same as the others, is exhibiting really strange behavior.

First time window is opened - the buttons all look like regular Kendo buttons (Buttons_Before.jpg), but NONE of the buttons do anything at all.

Second time window is opened - the buttons all look like regular Kendo buttons (Buttons_Before.jpg), and the 'Save' and 'Clear' buttons work just fine, BUT the 'Close' button fires the JavaScript twice.

Any time after the second time the window is opened - the buttons no longer look like Kendo buttons (Buttons_After.jpg) AND they all do nothing at all, again.

I have tried to use the debugger, but none of the window code shows up there, so I went old school and put in alerts, but they are just telling me the function either fired or didn’t, and most of the time the function doesn’t fire.

If anyone has any suggestions, I will really appreciate it. None of the other developers around here have been able to help.

TIA,
Bob Mathis
Dimo
Telerik team
 answered on 04 Apr 2016
1 answer
518 views

we have this kind of problem:

We have a database situation as described in the attached screenshot: We have one Request Table, one User Table and an Assignment Table that manage the many to many relationship of the first two tables.

We also have a kendoGrid bounded to the Request Table, and we need to filter data showing only the Request assigned to a specific user.

We are trying to use datasouce.filter (http://docs.telerik.com/kendo-ui/api/javascript/data/datasource#configuration-filter) but we can only filter fields from the Request Table and not from the  Assignment Table.

 

Is there a way to filter a grid using field from a related table?

Any answers will'be a great help for us.

Thank you.





 

Dimiter Topalov
Telerik team
 answered on 04 Apr 2016
5 answers
436 views

I would like to be able to auto expand (or just increase) the row height on the Scheduler month view to accommodate days that have multiple events.  Right now it gets cut off and you have to switch to day view to see all the events.  Is there a CSS style tag I can change to adjust this?

Magdalena
Telerik team
 answered on 04 Apr 2016
2 answers
126 views

I'm hoping this is possible as we are allowing end users to optionally set the min and max value axis amounts. I would like the chart itself to set either or both the Min or Max if the decimal? field is null. Right now I'm using the following code snippet:

.ValueAxis(x => x.Numeric()
        .Min(Model.YAxisRangeMin.GetValueOrDefault())
        .Max(Model.YAxisRangeMax.GetValueOrDefault()))

 This works fine if the decimal? fields have values, but if they are null, the defaults are set to 0, which is not good.

Problem is, I really only want to set a Min/Max value if it is not null. Any ideas how to do that within the control? Am I going to have to calculate the max on the server and use that as the default for the YAxisRangeMax if null? Min as 0 is fine.

Thanks!

Daniel
Telerik team
 answered on 04 Apr 2016
Narrow your results
Selected tags
Tags
Grid
General Discussions
Scheduler
DropDownList
Chart
Editor
TreeView
DatePicker
Upload
ComboBox
MultiSelect
ListView
Window
TabStrip
Menu
Installer and VS Extensions
Spreadsheet
AutoComplete
TreeList
Gantt
PanelBar
NumericTextBox
Filter
ToolTip
Map
Diagram
Button
PivotGrid
Form
ListBox
Splitter
Application
FileManager
Sortable
Calendar
View
MaskedTextBox
PDFViewer
TextBox
Toolbar
MultiColumnComboBox
Dialog
DropDownTree
Checkbox
Slider
Switch
Notification
ListView (Mobile)
Pager
Accessibility
ColorPicker
DateRangePicker
Wizard
Security
Styling
Chat
MediaPlayer
TileLayout
DateInput
Drawer
SplitView
Barcode
ButtonGroup (Mobile)
Drawer (Mobile)
ImageEditor
RadioGroup
Sparkline
Stepper
TabStrip (Mobile)
GridLayout
Template
Badge
LinearGauge
ModalView
ResponsivePanel
TextArea
Breadcrumb
ExpansionPanel
Licensing
Rating
ScrollView
ButtonGroup
CheckBoxGroup
NavBar
ProgressBar
QRCode
RadioButton
Scroller
Timeline
TreeMap
TaskBoard
OrgChart
Captcha
ActionSheet
Signature
DateTimePicker
AppBar
BottomNavigation
Card
FloatingActionButton
Localization
MultiViewCalendar
PopOver (Mobile)
Ripple
ScrollView (Mobile)
Switch (Mobile)
PivotGridV2
FlatColorPicker
ColorPalette
DropDownButton
AIPrompt
PropertyGrid
ActionSheet (Mobile)
BulletGraph
Button (Mobile)
Collapsible
Loader
CircularGauge
SkeletonContainer
Popover
HeatMap
Avatar
ColorGradient
CircularProgressBar
SplitButton
StackLayout
TimeDurationPicker
Chip
ChipList
DockManager
ToggleButton
Sankey
OTPInput
ChartWizard
SpeechToTextButton
InlineAIPrompt
TimePicker
StockChart
RadialGauge
ContextMenu
ArcGauge
AICodingAssistant
+? more
Top users last month
Edmond
Top achievements
Rank 1
Iron
fabrizio
Top achievements
Rank 2
Iron
Veteran
RobMarz
Top achievements
Rank 2
Iron
Fakhrul
Top achievements
Rank 1
Iron
Tejas
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Edmond
Top achievements
Rank 1
Iron
fabrizio
Top achievements
Rank 2
Iron
Veteran
RobMarz
Top achievements
Rank 2
Iron
Fakhrul
Top achievements
Rank 1
Iron
Tejas
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?