-
20 Jun 2011 11:13 AM #931
Ragged right rows
Ragged right rows
Hi Saki,
I'm using RowActions for the first time, so this may be something I missed.
I have a working grid. When I add an action icon, the widths of the columns change row by row based on their content and don't align with the header row.
ScreenShot325.jpg
The action icon is the + symbol in the rightmost column. When I remove the plugin all the widths are as specified in the width properties.
I'm using extjs version 3.2. The grid is an editor grid panel. I haven't shown the leftmost columns due to sensitive data.Frank R.
-
23 Jun 2011 2:54 AM #932
RowActions with MultiGrouping plugin
RowActions with MultiGrouping plugin
Hello
I am trying to use the RowActions with a multigrouping gridview plugin.
While I can get the actions to appear on every record of the grid without any problems, I cannot get the groupActions to work on a MultiGrouping gridview i.e the groupAction icons wont appear on the group heading.
Also, thanks for the great plugin.
Regards
-
24 Jun 2011 7:13 AM #933
qTipIndex not working in Ext 3.4
qTipIndex not working in Ext 3.4
Hi Saki,
I use the RowActions plugin alot in my application. Recently we upgraded our ExtJS version from 3.3.1 to 3.4 and noticed that the action icons doesn't show the tooltips anymore. We use the attribute 'qtipIndex' for the tooltips.
When i switch back to 3.3.1 everything is fine and i see the tooltips again.
I searched in the forums for any help, no luck. Any help would be greatly appreciated.
Thanks,
Pavan.
-
27 Jun 2011 7:25 AM #934
Hi Frank, Did you add all the CSS given for the plugin ?
-
7 Jul 2011 5:46 AM #935
Help to create toolTip on rowAction
Help to create toolTip on rowAction
Hello,
I created toolTip after clic in rowAction. But, I can't locate the toolTip on the right position.
This is my code:
Can you help me pleaseCode:var resourceOtherSelectionsAction = { iconCls: 'x-grid-action-view', tooltip: 'cliquer ici pour voir les autres sélections' }; var action = new Ext.ux.grid.RowActions({ swallowEvent: true, autoWidth: false, hideMode: 'display', width: 75, actions: [resourceOtherSelectionsAction, deleteResourceAction, viewResourceAction] }); action.on('action', function (grid, recordAction, action, row, col) { this.currentStore = grid.store; if (action == 'x-grid-action-delete') { this.deleteResourceAction(grid, recordAction, row, col); } if (action == 'x-grid-action-link') { this.showResourceAction(grid, recordAction, row, col); } if (action == 'x-grid-action-view') { this.viewResourceAction(grid, recordAction, action, row, col); } }, this); new Ext.ToolTip({ id: 'tip' + record.data.RscUid, title: '<a href="#">Click to view selections</a>', width: 300, autoHide: false, closable: true, renderTo: Ext.getBody(), target: grid.view.mainBody, //targetXY: grid.getPosition(), listeners: { 'render': function (e) { this.html = tip; this.header.on('click', function (e) { e.stopEvent(); for (var i = 0; i < record.data.Slct.length; i++) { // expand selections //myExpander.expandRow(0); //grid.colModel.getColumnById('expander').expandRow(0); } this.hide(); }, this, { delegate: 'a' }); } } }).show(); },
-
8 Jul 2011 2:17 AM #936
-
8 Jul 2011 4:08 AM #937
-
8 Jul 2011 5:07 AM #938
perfect - thank you

-
1 Aug 2011 1:46 PM #939
Download links down
Download links down
Hi Saki,
I cannot download your code from http://rowactions.extjs.eu is there another location?
Thanks in advance.
-
15 Aug 2011 9:33 AM #940
Ported to 4.0 yet?
Ported to 4.0 yet?
Has anyone ported this to 4.0 yet? I am converting our app from 3.3.1 to 4.0 and really need to make this work for it to succeed..

Thanks!



Reply With Quote