3.2.0

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
November 29,
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
November 29,
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
November 29,
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
November 30,
AW does not automatically convert URLs to links. That must be something else in your code.
Alex (ActiveWidgets)
November 30,
Can someone tell me how to add links to my grid?

Thanks
May 2,

This topic is archived.

See also:


Back to support forum