在jqgrid中隐藏弹出日期

时间:2016-04-26 14:26:46

标签: javascript jquery jqgrid

伙计们我正在使用jqGrid。

名为using System; using System.Collections.Generic; using Newtonsoft.Json; namespace Test { static class Program { static void Main() { string json = @" { ""Summoner_Id"": [{ ""name"": ""Fiora's Inquisitors"", ""tier"": ""GOLD"", ""queue"": ""RANKED_SOLO_5x5"", ""entries"": [{ ""playerOrTeamId‌​"": ""585709"", ""playerOrTeamName"": ""AP Ezreal Mid"", ""division"": ""IV"", ""leaguePoints"": 61, ""wins"": 175, ""losses"": 158, ""isHotStreak"": false, ""isVeteran"": false, ""isFreshBlood"": false, ""isInactive"": false }] }] }"; var root = JsonConvert.DeserializeObject<RootObject>(json); Console.WriteLine(root.Summoner_Id); } } public class Entry { public string playerOrTeamId { get; set; } public string playerOrTeamName { get; set; } public string division { get; set; } public int leaguePoints { get; set; } public int wins { get; set; } public int losses { get; set; } public bool isHotStreak { get; set; } public bool isVeteran { get; set; } public bool isFreshBlood { get; set; } public bool isInactive { get; set; } } public class SummonerId { public string name { get; set; } public string tier { get; set; } public string queue { get; set; } public List<Entry> entries { get; set; } } public class RootObject { public List<SummonerId> Summoner_Id { get; set; } } } 的列始终可编辑,因此每当页面加载日期选择器时都会显示。

我想要做的是首先编辑它而不弹出datepicker,并且日期选择器应该出现在日期字段上。

有可能吗? enter image description here

那怎么解决这个问题?

1 个答案:

答案 0 :(得分:0)

我猜这是日期选择器的错误 解决方法是将此添加到您的CSS中。

#ui-datepicker-div { display: none; }

我相信这个错误已修复了吗?您使用的是哪个版本的jqgrid和jquery.ui?