Craig
(Craig Rogers)
August 26, 2024, 2:01pm
1
We are migrating from Docuphase to ECM and we have all our legacy documents that the business needs access to. The easiest thing we can think of is using a UD table and point to the file location with a URL link on a dashboard. How do i change this Character01 to a URL link on the file share?
GThom
(Gage Thompson)
August 26, 2024, 6:12pm
2
One example can be found here, just a quick customization:
We do this in classic. I don’t know if that’s what you use and will help you but…
You have to change the Winforms to recognize the column in the grid as a URL.
We do this in dashboards by using the following code:
private void MainController_Load(object sender, EventArgs args)
{
grid1.DisplayLayout.Bands[0].Columns["Calculated_pdfurl"].Style = Infragistics.Win.UltraWinGrid.ColumnStyle.URL;
grid1.DisplayLayout.Bands[0].Columns["Calculated_picurl"].Style = Infragistics.Win.U…
Craig
(Craig Rogers)
August 26, 2024, 6:17pm
3
I tried that already and it didnt work. im assuming the code was not complete for what is needed in the customization.
klincecum
(Kevin Lincecum)
August 26, 2024, 6:19pm
4
You may not have the field exactly correct.
Craig
(Craig Rogers)
August 26, 2024, 6:20pm
5
the issue in test code was the grid1 didnt exist.
Craig
(Craig Rogers)
August 26, 2024, 6:39pm
7
@mjbest6288 figured it out.
3 Likes