简体   繁体   English

从Sharepoint服务器更改客户端分类法选择器的样式

[英]Change style of client-side Taxonomy picker from Sharepoint server

I'm working on control Taxonomy from SP server. 我正在从SP服务器上进行控制分类法。 After setting up and getting data from SP server (other employee working on it) but now I have to change its style so it'll be consistent to other controls of the system. 设置并从SP服务器(其他工作人员)获取数据后,现在我必须更改其样式,以使其与系统的其他控件保持一致。

This control is got from SP as follows http://www.c-sharpcorner.com/UploadFile/93cb27/client-side-taxonomy-picker-for-sharepoint-app/ 此控件是从SP获取的,如下所示:http://www.c-sharpcorner.com/UploadFile/93cb27/client-side-taxonomy-picker-for-sharepoint-app/

But as you can see in the last result we have is its default style (in image) 但是,正如您在最后的结果中看到的那样,我们拥有它的默认样式(如图中所示)

在此处输入图片说明

So my question is how to change the style of the textbox. 所以我的问题是如何更改文本框的样式。

Thanks 谢谢

I ended up with adding style for these classes 我最终为这些课程增加了风格

 .ms-taxonomy .ms-taxonomy-fieldeditor .ms-taxonomy-writeableregion { position: relative; display: block; float: left; height: 38px; line-height: 1.3; border: 1px solid #c4c7cc; background-color: white; border-radius: 5px; margin: 0; padding: 10px; color: #323232; width: 100%; transition: border-color 0.25s ease; font-size: 12px; overflow: auto; } 

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 使用Javascript在客户端上从服务器打开文本文件 - Open a text file from server on the Client-side using Javascript 客户端调用服务器运行 python - Client-side calls server to run python 在mvc3中从客户端调用服务器端函数 - call server-side function from client-side in mvc3 客户端回调无法正常工作 - Callback from client-side not working 在Google Apps脚本中从服务器端(.gs)传递到客户端(html)时,已知类型的变量变为“未定义” - Variable of known type becomes “undefined” when passed from server side (.gs) to client-side(html) in Google Apps Script 如何防止HTML中的客户端更改数据属性? - how to prevent client-side change data-attributes in HTML? 在客户端编程语言中更改键盘语言 - change keyboard language in client-side programming languages 在服务器和/或客户端页面重定向之后会话变量丢失 - Session variables are lost after server and/or client-side page redirect 从客户端JavaScript生成的站点生成静态HTML - Generate Static HTML From Client-Side JavaScript Generated Site 是否有客户端方法来阻止图像被缓存? - Is there a client-side way to prevent an image from being cached?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM