Tibco Spotfire网络播放器,通过网址设置文档属性

时间:2018-05-19 08:49:24

标签: spotfire tibco

我正在尝试在Tibco Spotfire中做一些简单的事情,尝试通过在url中指定属性来在webplayer中设置文档属性。我无法让它发挥作用。

我创建了一个名为' test'的文档属性。这只是一个字符串

Image of document property

然后我创建了一个绑定到该文档属性的输入文本控件

Image of input text property binding

我希望如果我在网页播放器中打开该报告,其中的网址前面带有& configurationBlock = test%3D" helloworld"然后输入文本将填充值helloworld。但事实并非如此。

Image showing value is not set via url

这似乎是一个相当简单的工作,我已经尝试了我认为编码数据的每种可能变体都没有效果。有什么我做错了可以使这项工作。

1 个答案:

答案 0 :(得分:0)

你会讨厌这个答案:)

你需要在参数赋值的末尾加一个分号。所以你应该:

builder.Register(c =>
  {
      var bar= c.Resolve<IBar>();
      var foo = new Foo(bar);
      return foo.ComputeAsync().ConfigureAwait(false).GetAwaiter().GetResult();
  })
.As<IFoo>()
.SingleInstance();