//in m"/>
首页 \ 问答 \ 如何删除jqgrid中的水平线(how to remove horizontal lines in jqgrid)

如何删除jqgrid中的水平线(how to remove horizontal lines in jqgrid)

我该如何做到这一点?

HTML

<table id="myGrid"><table>


//in my js I make it into a jqgrid

//css
.ui-jqgrid tr.ui-row-ltr td { border: none;}
.ui-jqgrid tr.ui-row-ltr td { border-collapse:collapse}

垂直线消失,但水平线保留。

请不要让我看一个不同的答案,因为建议不起作用,这就是我发布的原因 - 我需要删除行。


How do I achieve doing that?

html

<table id="myGrid"><table>


//in my js I make it into a jqgrid

//css
.ui-jqgrid tr.ui-row-ltr td { border: none;}
.ui-jqgrid tr.ui-row-ltr td { border-collapse:collapse}

The vertical lines are gone but the horizontal ones remain.

Please do not offer me to look at a different answer as the suggestions did not work which is why I am posting - I need the lines removed.


原文:https://stackoverflow.com/questions/33268947
更新时间:2023-10-24 09:10

最满意答案

通过在php.ini中将“extension = php_sqlite.dll”更改为“extension = php_pdo_sqlite.dll”来解决问题。

PS尽量不要留下未回答的问题。


Problem solved 'by changing the "extension=php_sqlite.dll" into "extension=php_pdo_sqlite.dll"' in php.ini.

P.S. Try not to leave the questions unanswered.

相关问答

更多
  • 看提示应该是文件无法打开,java.io.IOException应该是java系统库,那就要看看是否是路径不对或者路径下没有对应的class,本地如果都没问题的话,windows跟liunx差异好像就大小写吧,要不就是检查php.ini的配置
  • 没安装过php-java-bridge 但看你的php.ini 好像发现个问题 extension_dir 这个是引入的dll或so的路径, 一般我的php都会安装 memcache.so curl.so等 如果你加入了新的extension_dir路径, 那和你原来定义的不就重复了么. 因为我没有重复定义过, 所以我也不确定是否可以重复定义extension_dir 我每次安装新的模块 需要引入时, 要么把so文件copy一份到我的so(也就是extension_dir的目录) 或者直接写完整路径. 希望 ...
  • 你是什么意思“Jasper服务器”? 你的意思是“JasperReports服务器 - Web应用程序”( http://community.jaspersoft.com/project/jasperreports-server )? 如果是这样,它确实提供了REST接口。 请查看“JasperReports Server Web服务指南”( http://community.jaspersoft.com/documentation?version=7114 )。 但是,如果您只想在某处进行报告并以编程方式 ...
  • 我发现我必须在浏览器中启用Java。 我在Java的网站上使用了这个页面,介绍了如何在浏览器中安装和启用Java。 I figured out that I have to enable Java in my browser. I used this page from Java's website on how to install and enable Java in my browser.
  • 通过在php.ini中将“extension = php_sqlite.dll”更改为“extension = php_pdo_sqlite.dll”来解决问题。 PS尽量不要留下未回答的问题。 Problem solved 'by changing the "extension=php_sqlite.dll" into "extension=php_pdo_sqlite.dll"' in php.ini. P.S. Try not to leave the questions unanswered.
  • PHP Java桥与扩展php_java.dll 。 前者是用户态PHP实现。 请阅读文档 。 The PHP Java bridge has nothing to do with the extension php_java.dll. The former is a userland PHP implementation. Please read the docs.
  • 我曾经在寻找一个'java bridge'来与php进行通信,我搜遍了所有的stackoverflow并且我一直在运行用户体验,说它只是执行得太慢(php-java-bridge)。 这可能只是因为它是两个平台之间的桥梁。 注意:我从来没有使用我的php-> java的想法,所以我从来没有尝试过。 Configuration-wise, I'd say php Java Bridge wins. There's no middle jvm, and Tomcat does the work instead. ...
  • Google协议缓冲区 协议缓冲区 它是什么? 协议缓冲区是以高效但可扩展的格式编码结构化数据的一种方式。 谷歌几乎所有的内部RPC协议和文件格式都使用Protocol Buffers。 它支持以.proto语言定义的对象的快速和高效的序列化,并且本地支持C ++ / Java,并且PHP支持第三方。 Google protocol buffers Protocol Buffers What is it? Protocol Buffers are a way of encoding s ...
  • 查看您的错误消息,无法使用'12 / Feb / 16'创建java.util.Date : java_Client->createObject('java.util.Date', Array) #5 C:\wamp\www\advanced\backend\javabridge\generate.php(49): Java->Java('java.util.Date', '12/Feb/16') #6 {main}] in 如果要实例化java日期对象 ,请使用java.util.Date(长日期 ...
  • 这里有多个问题,但我会尝试一步一步解释: 1.代码部分。 您不应该使用java_require从PHP动态添加库依赖项(已从v6中删除)。 2.错误报告 正如您所注意到的,symfony错误处理程序无法提供非常有用的信息(没有明确的消息)。 不是symfony问题,而是更多关于Java.inc客户端处理异常/错误的方式。 必须使用getLastException显式检索桥接异常(java桥接端)( 不是100%正确,但我们假设它使事情变得简单 )。 当然没有错误处理程序(symfony,whoops ... ...

相关文章

更多

最新问答

更多
  • 您如何使用git diff文件,并将其应用于同一存储库的副本的本地分支?(How do you take a git diff file, and apply it to a local branch that is a copy of the same repository?)
  • 将长浮点值剪切为2个小数点并复制到字符数组(Cut Long Float Value to 2 decimal points and copy to Character Array)
  • OctoberCMS侧边栏不呈现(OctoberCMS Sidebar not rendering)
  • 页面加载后对象是否有资格进行垃圾回收?(Are objects eligible for garbage collection after the page loads?)
  • codeigniter中的语言不能按预期工作(language in codeigniter doesn' t work as expected)
  • 在计算机拍照在哪里进入
  • 使用cin.get()从c ++中的输入流中丢弃不需要的字符(Using cin.get() to discard unwanted characters from the input stream in c++)
  • No for循环将在for循环中运行。(No for loop will run inside for loop. Testing for primes)
  • 单页应用程序:页面重新加载(Single Page Application: page reload)
  • 在循环中选择具有相似模式的列名称(Selecting Column Name With Similar Pattern in a Loop)
  • System.StackOverflow错误(System.StackOverflow error)
  • KnockoutJS未在嵌套模板上应用beforeRemove和afterAdd(KnockoutJS not applying beforeRemove and afterAdd on nested templates)
  • 散列包括方法和/或嵌套属性(Hash include methods and/or nested attributes)
  • android - 如何避免使用Samsung RFS文件系统延迟/冻结?(android - how to avoid lag/freezes with Samsung RFS filesystem?)
  • TensorFlow:基于索引列表创建新张量(TensorFlow: Create a new tensor based on list of indices)
  • 企业安全培训的各项内容
  • 错误:RPC失败;(error: RPC failed; curl transfer closed with outstanding read data remaining)
  • C#类名中允许哪些字符?(What characters are allowed in C# class name?)
  • NumPy:将int64值存储在np.array中并使用dtype float64并将其转换回整数是否安全?(NumPy: Is it safe to store an int64 value in an np.array with dtype float64 and later convert it back to integer?)
  • 注销后如何隐藏导航portlet?(How to hide navigation portlet after logout?)
  • 将多个行和可变行移动到列(moving multiple and variable rows to columns)
  • 提交表单时忽略基础href,而不使用Javascript(ignore base href when submitting form, without using Javascript)
  • 对setOnInfoWindowClickListener的意图(Intent on setOnInfoWindowClickListener)
  • Angular $资源不会改变方法(Angular $resource doesn't change method)
  • 在Angular 5中不是一个函数(is not a function in Angular 5)
  • 如何配置Composite C1以将.m和桌面作为同一站点提供服务(How to configure Composite C1 to serve .m and desktop as the same site)
  • 不适用:悬停在悬停时:在元素之前[复制](Don't apply :hover when hovering on :before element [duplicate])
  • 常见的python rpc和cli接口(Common python rpc and cli interface)
  • Mysql DB单个字段匹配多个其他字段(Mysql DB single field matching to multiple other fields)
  • 产品页面上的Magento Up出售对齐问题(Magento Up sell alignment issue on the products page)