Telerik Forums
UI for ASP.NET MVC Forum
7 answers
816 views
Hi,

The horizontal scrollbar in the grid goes missing when I filter a column which is not shown initially. Once the scrollbar is not shown anymore, there is no way for me to reset the filter.

Has this issue been raised by someone? When are you planning to fix this? Thanks.
Viktor Tachev
Telerik team
 answered on 11 Jun 2019
3 answers
1.7K+ views

I am using a Kendo Editor for MVC and I would like to add either a custom button or image button in the Editor's Tools.

For example, I would like to add this line so the image can appear in the Tools:

<img id="btnCopy" name="btnCopy" src="~/Images/Copy.png" onclick='doSomething(document.getElementById("myText").value)' />

Is it possible to customize the Editor's Tools? if yes, what do I need to do? An example would be helpful.

Petar
Telerik team
 answered on 11 Jun 2019
1 answer
148 views

Hello I was wondering if there is a similar kendo mvc function to the RadTabstrip of IsBreak=true to allow for stacked tabs instead of scrolling tabs?

or if anyone has accomplished the stacked tabs.

basically our system has about 15 tabs that need to be a in a single tab strip control and the scrolling makes this basically un-usable for clients and they are used to our old application with stacked tabs on the top of the tab strip.

 

Thomas
Top achievements
Rank 1
 answered on 07 Jun 2019
1 answer
202 views

Hello,

I am using a Grid Custom Editor for ASP.NET MVC.  When updating, the CohortAttributes_Update method is called (verified by breakpoint in Visual Studio), however IEnumerable<ContractMultiselectXrefModel>  contractMultiSelectXrefs is set to a null value.  I have followed this guide for implementation: https://demos.telerik.com/aspnet-mvc/grid/editing-custom

ContractMultiselectXrefsController
        [AcceptVerbs(HttpVerbs.Post)]
        public ActionResult CohortAttributes_Update([DataSourceRequest] DataSourceRequest request, [Bind(Prefix = "models")]IEnumerable<ContractMultiselectXrefModel> contractMultiSelectXrefs)
        {
            db.Configuration.ProxyCreationEnabled = false;
            if (contractMultiSelectXrefs != null && ModelState.IsValid)
            {
                foreach (var contractMultiSelectXref in contractMultiSelectXrefs)
                {
                    contractMultiselectService.Update(contractMultiSelectXref);
                }
            }
            return Json(contractMultiSelectXrefs.ToDataSourceResult(request, ModelState));
        }

Index.cshtml
    @(Html.Kendo().Grid<HI_ACO_Tool.Models.RAD.ContractFeeXrefModel>
        ()
        .Name("CohortFees")
        .Columns(columns =>
        {
            columns.Bound(contract => contract.ContractFeeModel).ClientTemplate("#=ContractFeeModel.FeeNM#").Title("Fee");
            columns.Bound(contract => contract.Amount);
            columns.Bound(contract => contract.BeginDT).Title("Attribute start date").Format("{0: MM/dd/yyyy}");
            columns.Bound(contract => contract.EndDT).Title("Attribute end date").Format("{0: MM/dd/yyyy}");
            columns.Command(command => { command.Destroy(); }).Width(100);
        })
        .ToolBar(toolBar =>
        {
            toolBar.Create().Text("Add Fee");
            toolBar.Save();
        })
        .Editable(editable => editable.Mode(GridEditMode.InCell))
        .DataSource(dataSource => dataSource // Configure the grid data source
        .Ajax()
        .ServerOperation(false)
        .Model(model =>
        {
            model.Id(p => p.FeeXrefKey);
            model.Field(p => p.ContractCohortKey);
            model.Field(p => p.FeeKey);
            model.Field(p => p.ContractFee);
            model.Field(p => p.Amount);
            model.Field(p => p.BeginDT);
            model.Field(p => p.EndDT);
        })
        .Read(read => read.Action("ContractFeeGrid_Read", "ContractFee").Data("cohortInfo()"))
        .Update(update => update.Action("ContractFeeGrid_Update", "ContractFee"))
        )
)

Christopher
Top achievements
Rank 1
 answered on 07 Jun 2019
2 answers
301 views

Hi,

how can I toggle the drawer mini mode / expanded mode from within the drawer itself.

The samle code I found has the toggle button in some other control, for example the toolbar.

I would like to have the drawer in mini mode and one item  in the drawer to expand / collapse it.

When I expand the drawer from a handler function for itemClick, it expands but collapses at the end of the handler.

 

Regards

Erwin

erwin
Top achievements
Rank 1
Veteran
Iron
 answered on 07 Jun 2019
1 answer
951 views

telerik mvc window: change the url of window when iframe is set to true

My goal is to have a set of windows for a page and for the content to not be loaded until the first time the window is opened.

Each window has a maximize, minimize, and refresh button.

Here is the script to load a window.

var w = $(id).data('kendoWindow');
var url = $(id).data('url');

            var loaded = $(id).data('load');
            if (loaded == null) {
                w.refresh({
                    url: url
                });
                w.setOptions({
                    contentUrl: url,
                });
                $(id).data('load', 'false');
            }

However, with this approach, the "refresh" button on the window seems to have no effect after the content loads.
How can I maintain the URL so the window'scontent can be loaded programmatically and the refresh button reload the content?

Marin Bratanov
Telerik team
 answered on 07 Jun 2019
14 answers
399 views
The Kendo UI® ♥ Bootstrap sample application (http://demos.telerik.com/kendo-ui/bootstrap/) and its source code (https://github.com/telerik/kendo-bootstrap-demo) is two years old.  A lot has changed since then.  Any chance you could update it to 2017 please?  If you could, and if switching to Sass is possible, that would be really great, but not required, just desired.  Thank you!
Ianko
Telerik team
 answered on 07 Jun 2019
3 answers
571 views

I added a new column to my grid but it's not showing up because I'm using the setOptions method along with localStorage to save the grid options and it must be overriding the grid columns. How can I reset/clear localStorage so that the grid gets updated properly in the browser? Here is the relevant JS code:

    $(function () {
        var grid = $("#reviewsGrid").data("kendoGrid");

        var options = localStorage["pat-sessions-options"];
        if (options) {
            var parsedOptions = JSON.parse(options);
            parsedOptions.toolbar = [
                { template: $("#toolbarTemplate").html() }
            ];
            parsedOptions.columns[0].headerTemplate = $("#emptyHeaderTemplate").html();
            grid.setOptions(parsedOptions);
        }
    });

    function onDataBoundPATItems(e) {
        var grid = $("#reviewsGrid").data("kendoGrid");
        localStorage["pat-sessions-options"] = kendo.stringify(grid.getOptions());
    }

Tsvetina
Telerik team
 answered on 06 Jun 2019
4 answers
264 views

Hello,

I'm currently trying to make the grid's on our website persisted but have a couple of questions:

1. Persisting Columns with Multicheck Filters
When I try and open the column menu on a column that has multi check filter, it errors. It's the exact same issue as in https://www.telerik.com/forums/multi-check-box-filter-and-persistance but the answer was from 2 years ago. Is there an update to this? 

2. Handling data changes
What happens when you add, remove or rename a column? Is there a way to compare the saved (in local storage) columns and see if there are any differences? If so, delete the saved grid settings as it's now incorrect?

Thank you

Lucy

Tsvetina
Telerik team
 answered on 06 Jun 2019
3 answers
193 views
Hello,

I have constructed a simple map as per following demo: https://demos.telerik.com/aspnet-mvc/map and I need the tooltip assigned to the marker to be displayed automatically upon page load. I have come across this solution: https://www.telerik.com/forums/marker-tooltip-show-on-load but it references AJAX, not Kendo-MVC. Can you please help me on how to achieve this?

Thank you,
Dimitris
Tsvetina
Telerik team
 answered on 06 Jun 2019
Narrow your results
Selected tags
Tags
Grid
General Discussions
Scheduler
DropDownList
Chart
Editor
TreeView
DatePicker
Upload
ComboBox
MultiSelect
Window
ListView
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
Rating
ScrollView
ButtonGroup
CheckBoxGroup
Licensing
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
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?