Telerik Forums
Kendo UI for jQuery Forum
1 answer
438 views

I am using the "row" mode for my grid filters (http://demos.telerik.com/kendo-ui/grid/filter-row). I have a column that is a boolean and it looks like Kendo places the label before the radio button. Here's an example of what I'm seeing: http://dojo.telerik.com/OJEWU

Is there a way to configure the radio buttons from being on the right side of the label to being on the left side?

Iliana Dyankova
Telerik team
 answered on 17 Jun 2016
3 answers
123 views

Hello,

I would like to report a filtering issue or ask if it is a normal functionality and why it is.
Let's suppose we have a grid with 'persons' data and there is a column age. If we try to filter the grid by age (For instance there are check boxes with the different ages into the grid) and select age 28 and 30. Then all persons with age 28 and 30 will be shown. Now if we try to deselect ages 28 and 30 and click the 'Filter' button then nothing happens(all check boxes are now deselected), the filtered result is still out there. When we just click 'Clear' button then all data is shown again as expected in the previous step. This could be seen in the example here: http://demos.telerik.com/kendo-ui/grid/filter-multi-checkboxes with unit price

Thanks!

Stefan
Telerik team
 answered on 17 Jun 2016
3 answers
502 views

Sorry if this is a repeat. What is the best way to set the autocomplete datasource after the page loads in a document.ready function (not waiting for the user to click on the input)?

I'm using mvc/razor.

 

Thanks

Daniel
Telerik team
 answered on 17 Jun 2016
5 answers
430 views
The reason I want an editor is to add rich content BUT not unsustainable content. Because the way we build sites includes skinning things like choosing fonts and colors make content a heavy issue when updating the skin. If the custom colors selected don't match then content conflicts with the new look and feel and thus makes things less sustainable.

My resolution is to use styles instead of colors and/or font selections. Can we put up some nice clarification in the docs on how to modify and work with the toolbar and customize it towards these goals?

Extending the editor... I also want to be able to say drop a template inside the editor. Another thing that would be great is we often work with 960 Grid layouts. It would be great to be able to manage content for those scenarios. I am not asking Kendo to build in all these features but it would be superb if we had an idea how to extend these functionalities. We liked the work by Jay Slavat and his MarkeItUp! editor but he did not have enough support to build it out to that level and retired active development. Certainly I am not after a code editor here but the ability to build some of the extension plugins for the editor would be a WIN WIN.
Ianko
Telerik team
 answered on 17 Jun 2016
3 answers
937 views

Hi,

I am new to Telerik, and we are evaluating the Kendo UI. I was checking the date picker and time picker and I noticed that the user can enter any value in the text without any validation. Is there an option to retstrict invalid date for date picker and time for time picker?

 

Thank you in advance

Georgi Krustev
Telerik team
 answered on 17 Jun 2016
4 answers
220 views

Hi, we are developing a component where we use nested Kendo UI Windows. Attached picture shows what we need. Following is the functionality.

On clicking of "Button1" we need to create kendo windows (Modal1,Modal2 etc) within the div (TotalContainer). If the width exceeds  div width scroll bar should appear. Modal windows should be draggable within TotalContainer. Similarly if we click on "Button2" we need to create nested windows(submodal1,submodal2 etc ) with in Modal1. If the width increases Modal1 width scroll bar should appear. And all the submodals should be draggable within Modal1 itself.

We have achieved the above functionality, but on dragging any SubModal entire Modal1 is being dragged. We are unable to drag SubModal1 alone within Modal1.

Attached is the code which we have developed.

 

Thanks in advance

 

Mounika
Top achievements
Rank 1
 answered on 17 Jun 2016
2 answers
305 views

Hello,

Is there any sort of callback that can be used with kendo.saveAs?

Specifically, we are using kendo.drawing.exportPDF and then calling kendo.saveAs, and would like to know when saveAs completes.  When kendo.saveAs uses a proxyURL, the user is often waiting on the file to come back from the server and we would like some way to inform the user of the progress or completion.

If there isn't a callback, is there a recommended way of approaching this?

Thanks for you help,

Jeff

DVS InteleStream
Top achievements
Rank 1
 answered on 16 Jun 2016
0 answers
83 views

2nd Grid is not refreshing.

Here is part of my code:

1st grid:

@(Html.Kendo().Grid<OpenInvoicesInfo>()

      .Name("OpenInvoiceGrid")
      .Events(e => e.DataBound("LineItems_Databound"))
      .ColumnMenu(i => i.Columns(false))
      .Columns(columns =>
      {
          columns.Bound(p => p.INVOICE).ClientTemplate("<input type='checkbox' value='#= INVOICE #' class='testclass'  />").Width(4);
          columns.Bound(i => i.INVOICE).Title("Invoice").Width(15);
          columns.Bound(i => i.ORDER_NBR).Title("Order").Width(10);

...

      .Scrollable()
      .ToolBar(i => { i.Custom().Text("Get All Invoices Comments").Url("javascript:GetAllInvoicesComments();"); })
      .Sortable()
      .Filterable()
      .DataSource(dataSource => dataSource
          .Ajax().UseJniErrorHandler()
          .PageSize(8)
          .Read(read => read.Action("GetOpenInvoices", "Maint", new { cust = Request.QueryString["cust"] }))
      )

 

2nd grid:

@(Html.Kendo().Grid<CustomerComments>()
      .Name("CustomerCommentsGrid")
      .AutoBind(false)
      .Columns(columns =>
      {
          columns.Bound(i => i.Invoice).Title("Invoice").Width(15);
          columns.Bound(i => i.Comment).Title("Comment").Width(40);

      }).Pageable(pageable => pageable
          .Refresh(true)
      )
      .Scrollable()
      .Sortable()
      .Filterable()
      .DataSource(dataSource => dataSource
          .Ajax().UseJniErrorHandler()
          .PageSize(10)
          //.Read(read => read.Action("GetCustomerComments", "Maint", new { invoices = "fail" }))
      )
)

 

<script type="text/javascript">

    function GetAllInvoicesComments() {
            var result = [];
            var items = $("#OpenInvoiceGrid").find(".testclass").filter(":checked");
            items.each(function () {
                result.push({
                    Value: $(this).val(),
                    Checked: true
                });
            });

            var invoicesList = "'";

            for (var i = 0; i < result.length; i++) {
                invoicesList = invoicesList + result[i].Value.trim() + '\',\'';
            }
            
            invoicesList = invoicesList.substring(0, invoicesList.length - 2);

            $.ajax({
                url: webManager.resolveUrl("~/maint/GetCustomerComments"), 
                method: "POST",
                data: { invoices: invoicesList },
                success: function () {
                    var grid = $('#CustomerCommentsGrid').data('kendoGrid');
                    grid.dataSource.read();
                    grid.refresh();
                    alert('success');
                },
                error: function () {
                    alert('an error occurred');
                }

            });
        }

 

Any help will be appreciated. Waiting for any replies.

 

Thank you.

Gaurav
Top achievements
Rank 1
 asked on 16 Jun 2016
2 answers
617 views

Hi.

I have a Grid with a custom command button and when I click it, I want to open a context menu.  I created this (http://dojo.telerik.com/@kristjk/UNOwE) which has a Grid, similar to mine, and a custom command button as the last cell in the row.

How would I go about showing a context menu when I click it and not show it on right-click ?

 

Best regards,
Kalli

Kalli Kaldi
Top achievements
Rank 1
 answered on 16 Jun 2016
5 answers
148 views

I've got a project that's been in development since late last year, with many grids in it, all of which have resizable columns (resizable: true).  I dropped in the latest Kendo release that was made available this past week, and now (with no other changes made to the project) none of the grids' columns in my project are resizable.  There's nothing in the release notes about this.  What's going on with column resizing?

Dimo
Telerik team
 answered on 16 Jun 2016
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
ScrollView
Switch
TextArea
BulletChart
Licensing
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
FloatingActionButton
CircularGauge
ColorGradient
ColorPalette
DropDownButton
TimeDurationPicker
ToggleButton
TimePicker
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?