:: Forum >>

Disable automatic linking in grids?

When I type a URL into a grid cell such as "www.google.com". It is automatically made into a clickable link. I do not want that to happen, any way you can disable it?
Lee
Wednesday, November 29, 2006
AW doesn't do this automatically.

Is it possible that you are running a Browser toolbar which does this automatically? Google Toolbar perhaps?
Karl Thoroddsen
Wednesday, November 29, 2006
I have Google Toolbar and don't have any such problems in my grid.
Maybe its some other toolbar.
Or have you set the template of the cell to link ?
Paste your code here - it might help us fix your problem.
Ankur Motreja
Wednesday, November 29, 2006
var gridSettings = new AW.UI.Grid;

gridSettings.setId("SettingsGrid");
gridSettings.setColumnCount(3);
gridSettings.setHeaderText(['Label', 'Value', 'Help']);
gridSettings.setSize(700, 400);
gridSettings.setSelectionMode("single-cell");
gridSettings.setCellEditable(false, 0);
gridSettings.setCellEditable(true, 1);
gridSettings.setCellEditable(false, 2);
gridSettings.setColumnWidth(350, 0);
gridSettings.setColumnWidth(290, 1);
gridSettings.setColumnWidth(50, 2);
gridSettings.setVirtualMode(false);
gridSettings.setAttribute("type", "text");
gridSettings.setRowCount(5);
Lee
Thursday, November 30, 2006
AW does not automatically convert URLs to links. That must be something else in your code.
Alex (ActiveWidgets)
Thursday, November 30, 2006
Can someone tell me how to add links to my grid?

Thanks
Wednesday, May 2, 2007

This topic is archived.


Back to support forum

Forum search