Any help ??
EasyUI
Home | Help | Search | Login | Register |
21
on: June 09, 2025, 02:41:21 PM
|
||
Started by jega - Last post by jega | ||
Any help ??
|
22
on: June 09, 2025, 03:19:00 AM
|
||
Started by Aod47 - Last post by jarry | ||
Please override the 'renderRow' method of the scrollview.
Code: $.extend(scrollview, { |
23
on: June 02, 2025, 11:27:46 PM
|
||
Started by Aod47 - Last post by Aod47 | ||
Could you please provide an example of using Datagrid Scrollview + Cardview together? I tried creating a Datagrid Cardview first and added the data-options with view:scrollview, but it didn't work.
ps. I successfully created a Datagrid Scrollview with remote load. Code: <table id="GridPanel1" border="false" data-options="view:scrollview,singleSelect:true,rownumbers:true,pageSize:50,idField:'GID',autoRowHeight:false,showHeader:false"> Code: var cardview = $.extend({}, $.fn.datagrid.defaults.view, { |
24
on: May 24, 2025, 06:21:35 AM
|
||
Started by btork - Last post by jarry | ||
Define the 'styler' function to set the CSS styles for the column.
Code: <script> |
25
on: May 24, 2025, 06:16:45 AM
|
||
Started by btork - Last post by jarry | ||
Add the CSS style to hide the expanding/collapsing icon on the treegrid.
Code: <style> And then listen to the 'onClickRow' event, call the 'toggle' method to expand or collapse the node. Code: $('#tg').treegrid({ |
26
on: May 22, 2025, 05:14:20 PM
|
||
Started by btork - Last post by btork | ||
How do I change the background color for a column?
|
27
on: May 22, 2025, 10:51:26 AM
|
||
Started by btork - Last post by btork | ||
I have a treegrid and i want the child rows to be smaller. Can i change the row height to smaller for just the child rows?
-btork |
28
on: May 21, 2025, 09:05:19 PM
|
||
Started by btork - Last post by btork | ||
Hello,
I want to hide the expand icon for a treegrid for the entire table. I want the user to be able to expand by clicking on the entire row. Is this possible? -btork |
29
on: May 02, 2025, 02:28:01 PM
|
||
Started by jega - Last post by jega | ||
Hi
Have set title on datagrid with var dgPanel = $('#dgList').datagrid('getPanel'); dgPanel.panel('setTitle',data.titleName); When changing singleselect state with $('#dgList').datagrid({ singleSelect:true }); it destroys the title. How to keep it without do a setTitle on panel again |
30
on: April 29, 2025, 06:46:34 AM
|
||
Started by jega - Last post by jega | ||
Hi Jarry.
Works perfect. Thanks |