Telerik 报告:多个文本框并排并缩小
我想在两个标签之间并排放置多个文本框,如下所示:
([=Fields.city] [=Fields.state] [=Fields.zip])
并让它们像这样显示:
(Punxsutawney PA 15767)
(Concord MA 01742)
不这样:
(Punxsutawney PA 15767)
(Concord MA 01742)
这可能吗?我使每个文本框都可收缩,但这并没有做到。我还尝试了向左对接,但这也不起作用,而且它对字符串文字(括号)的处理方式也与绑定到数据的字段不同。
I would like to put multiple textboxes side by side between two labels, like this:
([=Fields.city] [=Fields.state] [=Fields.zip])
and have them display like this:
(Punxsutawney PA 15767)
(Concord MA 01742)
not like this:
(Punxsutawney PA 15767)
(Concord MA 01742)
Is this possible? I made each textbox shrinkable but that didn't do it. I also tried docking left but that didn't work either and it also treated the string literals (the parentheses) differently than the fields bound to data.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
CanGrow
属性仅适用于垂直方向。尝试使用HtmlTextBox
。您可以在那里使用变量或参数,对它们使用各种样式等。CanGrow
property works only vertically. Try usingHtmlTextBox
. You can use variables or parameters there, use various styles on them etc.