如何设置 aspxtextboxes 的工具提示以显示其文本内容?

发布于 2024-09-01 14:23:43 字数 203 浏览 1 评论 0原文

我一直在 asp.net 和 c#.net 中使用 devexpress AspxTextbox?

最初我正在努力为 aspx 文本框设置文本,但之后我得到一个提示,带有自定义 js 属性的 clientinstancename.settext() 可以解决该问题。

现在的问题是我必须为 aspxtextboxes 设置工具提示以显示其文本内容?怎么可能呢?

i have been working with devexpress AspxTextbox, in asp.net and c#.net?

initially i was struggling to settext for aspx text boxes,but after that i got a tip that clientinstancename.settext() with custom js properties solve that issue.

now the problem is i have to set the tool tip for the aspxtextboxes to show their text contents ? how could that be done?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

空城之時有危險 2024-09-08 14:23:43
 <ClientSideEvents EndCallback="function(s,e)
{                                      clientCADIncidentNo.mainElement.title=s.cpUnReconcileCADIncidentNo;   
                                    }" />

其中 cpUnReconcileCADIncidentNo 是在所需事件中分配的 jsproperties 键,如下所示

((ASPxGridView)sender).JSProperties["cpUnReconcileSafetyPADIncidentNo"] ="texttobeshownastooltip";
 <ClientSideEvents EndCallback="function(s,e)
{                                      clientCADIncidentNo.mainElement.title=s.cpUnReconcileCADIncidentNo;   
                                    }" />

where cpUnReconcileCADIncidentNo is the jsproperties key whichis assigned in the required event as below

((ASPxGridView)sender).JSProperties["cpUnReconcileSafetyPADIncidentNo"] ="texttobeshownastooltip";
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文