Display border along header and footer of Kendo grid - kendo-ui

I am adding columns dynamically in the kendo ui grid. At the top of the grid the default text is displayed 'Drag a column header and drop it here to group by that column'.
At the footer of the grid the paging details are displayed including icon for navigation.
But, the grid is not displaying the border at the top and bottom, means the default text displayed at the top of the grid is not having the border and also the footer including the paging control the border is missing.
How can I add that border.
Thanks

For styling group header o a grid you need to include the definitions in k-group-header. Something like:
.k-grouping-header {
border: 5px groove red;
}

Related

Kendo UI Grid Remove the Outline of an HTML Element from the PDF Export

I have a Kendo UI Grid that has a drop down element on the form. When I export to a PDF the selected value appears on the PDF but has the outline of the select element around it. When exporting to a pdf how can I remove the outline of the element?
Like #Diptee Hamdapurkar mentioned, you have the .k-pdf-export as base for this.
.k-pdf-export .k-grid td{
border: 0;
}
here is the documentation.
https://www.telerik.com/kendo-angular-ui/components/pdfexport/content-styling/

Kendo grid How can I display row content on mouse over for each column as my data is huge?

I need to display open a pane where I can display the full text of selected column.
I was referring to
How can I add multiple tooltips on kendo ui grid.
but not getting how to get the tooltip for each column selected.
Thanks in advance.
See if this demo helps you.
The Tooltip widget has a content configuration that accepts either a string or a function returning a string.
This function gets a parameter containing the target for the tooltip which is the element your mouse is hovering over.
You can filter the elements so that only tds pop the tooltip.
Here's how I built and applied the tooltip options object I use in the example:
$("#container").kendoTooltip({
filter: "td",
content: function(e) {return e.target.html();}
});
This example will show a tooltip containing the same content as the cell you're poining at.
If you have any further questions, feel free to ask them.

Hide page footer in RDLC

I have a report where I need to print a footer only on the last page.In order to doing so, I'm using a Rectangle in the footer area with this formula:
=iif(Globals!PageNumber=Globals!TotalPages,false,true)
Using this method, the footer is printed only in the last page, but in all the other pages, I have a lot of white space where the footer is supposed to be.I think the problem is I change visibility only on the Rectangle object.Is there a way to hide all the footer based on a condition?
You can put that rectangle below the table itself rather than putting it in the footer then it will come only in the last page

Horizontal scroll for a Kendo Grid

I have a Kendo Grid inside a Kendo Window. How can I enable its horizontal scrolling using wrappers?
I've tried anything, but none of them worked. The last thing I tried was surrounding the Grid with a width-limited div.
Have you tried using frozen column, I prefer use this feature if I have a lot of columns to be displayed.
Demo Section
Apply Scrollable() and give Width for each columns and then if the total width exceeds the width of the grid the horizontal scrollbar will appear.
Reference
Scrolling
Kendo Grid Horizontal Scroll bar
Another solution here could be using 'table-responsive' from bootstrap.
For example:
<div class="table-responsive">
<div id="grid"></div>
</div>
and in the declaration of the kendogrid something like this:
$("#grid").kendoGrid({
dataSource: dataAjax.Rotation,
scrollable: false,
});
Simple Solution to get the horizontal scrolling for a Kendo Grid
If you want to get horizontal scrolling on the whole grid not on specific columns then you can try this.
Use width: 'auto'
It will show horizontal scrolling if grid's size is more than the container.
Demo
I had the same issue with Angular 12. Adding [scrollable]="true" to the kendo-grid solved my issue.

Magento custom option with radio buttons on the same row

I've created a simple product with custom option for size (with radio buttons) instead of a configurable product. My problem is that radio buttons are displayed on different rows.
see here
I want my radio buttons to look more like this
What code should I edit? thank you in advance!
add float:left; to stylesheet for li:
.product-options ul.options-list li {
/*... yor style here ...*/
float:left;
}

Resources