码迷,mamicode.com
首页 >  
搜索关键字:动态修改easyui datagrid 列宽度    ( 1889个结果
WPF DataGrid下滑动态加载数据
效果如图: 重点是判断滑动到DataGrid底端(VerticalOffset等于ScrollableHeight),则继续加载数据 示例代码 "LoadingDataAsync" 参考资料 "WPF ScrollViewer panning" ...
分类:Windows程序   时间:2020-03-18 14:04:10    阅读次数:144
WPF中DataGrid列根据条件隐藏
一、采用代理1、xaml的Resources中添加一个FrameworkElement的代理<Window.Resources> <FrameworkElement x:Key="Proxy" DataContext="{Binding}"/> </Window.Resources>2、用一个隐藏的 ...
分类:Windows程序   时间:2020-03-18 11:31:42    阅读次数:107
01从DataGrid中导入到Excel
01网络上有很多导出数据到Excel的方法,我在网上找到了一种比较简单实用的方法(参考了网友的方法) string fileName = ""; Microsoft.Win32.SaveFileDialog dlg = new Microsoft.Win32.SaveFileDialog(); dl ...
分类:其他好文   时间:2020-03-18 09:55:52    阅读次数:66
easyui datagrid 重置分页页码
在同一个页面,多个 datagrid查询使用同个元素来展示时,存在分页页数缓存 相互 影响覆盖的问题,比如: 第一个 datagrid 查询,翻页到第10页,然后在点击按钮,查询第二个 datagrid,这是第二个datagrid也会查询第10页,而不是查询第1页!!!! 解决方法:需要重置页码: ...
分类:其他好文   时间:2020-03-12 18:40:02    阅读次数:159
WPF DataGrid ScrollBar Style
效果图如下 代码 <DataGrid.Resources> <Style TargetType="{x:Type ScrollBar}"> <Setter Property="Stylus.IsPressAndHoldEnabled" Value="false"/> <Setter Property ...
分类:Windows程序   时间:2020-03-08 21:38:36    阅读次数:79
easyui datagrid columns的field支持属性的子属性(field.sonfield形式或者格式化程序形式)
所谓为了支持某属性的子属性,主要为了解决。在服务器返回的json格式的数据的某个属性带有自属性,而我们恰恰又需要使用到该子属性作为我们的datagrid的某个字段的。默认情况下datagrid只能支持一级属性字段(属性的属性字段属于二级字段)。 对于这个问题的解决方案有两种方式 1、就是更改esay ...
分类:其他好文   时间:2020-02-29 14:59:55    阅读次数:106
DataGrid 字体垂直居中
如果用DataGridTextColumn作为DataGrid的列,字体垂直居中需要这样设置: <Style x:Key="Body_Content_DataGrid_Centering" TargetType="{x:Type DataGridCell}"> <Setter Property="T ...
分类:其他好文   时间:2020-02-28 19:07:26    阅读次数:100
EasyUI DataGrid 多级表头设置
使用EasyUI做一个报表统计,需要合并表头为多级表头,核心代码如下: $('#dg').datagrid({ url:'datagrid_data.action', fit : true, fitColumns : false, columns: [ [ {"title":"网格员考核测评表"," ...
分类:其他好文   时间:2020-02-25 13:08:18    阅读次数:181
DevExpress中 的DataGrid每一行根据其类型显示控件的种类
public class ValueSelector : DataTemplateSelector { public ValueSelector() { } public override DataTemplate SelectTemplate(object item, DependencyObje ...
分类:其他好文   时间:2020-02-22 12:21:09    阅读次数:72
bootstrap datagrid表格高度自适应修改
onPostBody:function(){ $('.fixed-table-container').css('height', "");//先让高度出现 if(jQuery(document).height() >jQuery(window).height() ){//如果页面高度大于窗口高度 $ ...
分类:其他好文   时间:2020-02-21 18:37:12    阅读次数:131
1889条   上一页 1 ... 4 5 6 7 8 ... 189 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!