ExtJS 4.2: No separator in header of grid in IE11

Description

See screenshot here

Caused By

CSS ‘.x-column-header-inner’ and ‘.x-grid-header-ct’ in ext-theme-classic-all.css cannot display the same in IE11 as in IE8.

Solution

Add ‘background-image: -ms-linear-gradient(top,  #F9F9F9 0%,#E3E4E6 100%)’ to CSS. Remove ‘background-image: none’ from  ‘.x-grid-header-ct’.

时间: 2024-11-12 23:47:00

ExtJS 4.2: No separator in header of grid in IE11的相关文章

Extjs 4 tabpanel动态加载reconfigure的grid

Ext.onReady(function(){ var store = Ext.create('Ext.data.Store',{ fields : ['name', 'seniority', 'department'], groupField : 'department', data:{'employees':[{"name":"Michael", "seniority":7, "department":"Sale

ExtJs笔记

1.Ext简介.Extjs是一个Ajax框架,是一个用javascript写的,用于在客户端创建丰富多彩的web应用程序界面.ExtJs可以用来开发RIA(Rich Internet Application,富互联网应用系统)的Ajax应用框架.ExtJs是一个用javascript写的,主要用于创建前端用户界面,是一个与后台技术无关的前端ajax框架.因此,可以把ExtJs用在.Net,Java.Php等各种开发语言开发的应用中2.Ext库文件说明                       

extjs gridpanel 操作行 得到选中行

extjs gridpanel 操作行 得到选中行的列 在Extjs 3.2.0上适合 var model = grid.getSelectionModel(); model.selectAll();//选中所有行 model.selectFirstRow();//选中第一行 model.selectLastRow([flag]);//选中最后一行,flag为正的话保持当前已经选中的行数,不填则默认false model.selectNext();//选中下一行 model.selectPrev

Simple Style

<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/interactivedesigner/2006" xmlns:

跟着杨中科循序渐进学习wpf(全)

第一季 C#编程基础 1.用C#编写一个10+20=?的小程序: public static voidMain(tring[] args) { int i1=10; int i2=20; int i3=i1+i2; Console.WriteLine(i3);           //也可用占位符来实现:Console.WriteLine("{0}+{1}={2}",i1,i2,i1+i2);在输出参数较多时候要用占位符 Console.ReadKey();             

WPF RichTextBox 控件常用方法和属性

以下内容转自 http://blog.csdn.net/yulongguiziyao/article/details/25330551. 1. 取得已被选中的内容: (1)使用 RichTextBox.Document.Selection属性(2)访问RichTextBox.Document.Blocks属性的“blocks”中的Text2. 在XAML中增加内容给RichTextBox:<RichTextBox IsSpellCheckEnabled="True">  

WPF代码模板-布局部分

Grid 两行和三列 <Grid ShowGridLines="True"> <Grid.RowDefinitions> <RowDefinition></RowDefinition> <RowDefinition></RowDefinition> </Grid.RowDefinitions> <Grid.ColumnDefinitions> <ColumnDefinition>

WPF 布局之综合实例

<Window x:Class="UniFormGridDemo.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/bl

D25_01_菜单(menu ContextMenu)

<Window x:Class="demo.MixedMenus" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="MixedMenus" Height="350" Width="525