I would like to implement special menu as here: http://decisionlens.com/customers.
Meaning tab functionality with transparent background and highlighting on the bottom
I need only top level, so no submenu necessary
Any recommendations?
Thank you
Hi, we need a grid with the following :-
1. Grid Resize
2. Frozen Column
3. 100% height for the grid ( Check the attachment)
We need all this 3 in a grid, to achieve #3 we have done a css change for rgDataDiv and this is working fine and #1 also no issues its working
.rgDataDiv{position:relative; height:auto !important; overflow-x: auto !important; overflow-y: hidden !important; }
But #2 Frozen column is not working & if we remove the above css (avoiding the 100% height) the frozen is working fine, we need all the three in the same grid, do you have any examples?
Note :- we have removed the grid scroll and using our application scroll for the grid.
How can I use (Gauge - Volume Control in RadGrid) Like (RadRating in RadGrid) Sample
Hello,
The RadGrid events for the GridClientSelectColumn , eludes me . I think we can make the assumption it contains a check box. But how do we inspect client events/state on this control .
[in client/javascript]
I simply want to know , when a user clicks on one (or more) check boxes in the GridClientSelectColumn , to determine if they checked or unchecked the row ?
The purpose : I am trying to hide a RadButton , if none of my ( GridClientSelectColumn ) rows are selected. However, if even one is selected, I want to show my RadButton. I also need to take into account if the user clicks on the column header checkbox ( [de]selecting all ) .
Thank you for your guidance !
It maybe something changed in chrome that caused issue on some skin of the PanelBar not displaying correctly? On IE, it seems to be ok, but on Chrome, some skin (e.g. Default, Office series), on the highlighted item, the "text" and part of the "highlight" would be missing. Will there be a patch coming out for this issue?
Thank you!
Please see the attach first, it is part of RadGrid.
When I click next page, how can I fire server and client side event ?
Hi
im using RadGrid with AllowScroll="True" UseStaticHeaders="True".
also, TableLayout="Fixed" and i not using ItemStyle-Width.
when i got scrolling the header is not aligment with the data. atteched screenshots
reproduce on
2016.3.1027.40 and 2013.3.1114 versions
<
div
id
=
"grid"
></
div
>
<
script
type
=
"text/x-kendo-template"
id
=
"myUpdateTemplate"
><
div
id
=
"tempCode"
>// here my template code</
div
></
script
>
<
script
> $(document).ready(function () {
var grid = $("#grid").kendoGrid({// my grid code in here});
var val = $("#grid").kendoValidator({
// my custom validation rules and messages are here
}).data("kendoValidator");
}); <
script
>
var val = $("#grid").kendoValidator({
// my custom validation rules and messages are here
}).data("kendoValidator");
Not working .....
Then I add template id to grid object ..
var val = $("#myUpdateTemplate").kendoValidator({
// my custom validation rules and messages are here
}).data("kendoValidator");
var val = $("#tempCode").kendoValidator({
// my custom validation rules and messages are here
}).data("kendoValidator");
kendoValidator()