Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 jqGrid。它的第一行是可编辑的。稍后,如果双击,底部的每一行也是可编辑的。但默认情况下,第一行是可编辑和聚焦的。后面的行在那里。但我想为底部未编辑的行添加一些填充。
您应该创建一个特定的类来处理底部行中的填充。如果您在覆盖 jqGrid css 时遇到问题,请添加 !important 属性。例如:
.row-not-edited{ padding: 10px !important; }
所以我根据我找到的教程创建了一个日历。在我尝试自定义它之前它一直有效。
我想要做的是存储光标信息,private ArrayList<HashMap<String, String>> list;然后将其传递给日历片段,以便在那里显示/隐藏该日期的图像。但是,我在这一部
private ArrayList<HashMap<String, String>> list;