大飞 发表于 2021-12-22 09:47:04

葡萄城2019 安装问题安装后无效

@{
Layout = null;
}
@Html.C1().Styles()
@Html.C1().Scripts().Basic()
@*<script src="~/Content/Scripts/jquery/jquery-1.8.2.js"></script>*@
@*<link rel="stylesheet" href="~/Content/styles/cetione.css" type="text/css" />
<link href="/Content/jquery-easyui-1.5/themes/gray/easyui.css" rel="stylesheet" />
<link href="~/Content/jquery-easyui-1.5/themes/icon.css" rel="stylesheet" />
<link href="~/Content/Styles/easyui-rtl.css" rel="stylesheet" />
<script src="~/Content/Scripts/framework.js"></script>
<script src="~/Content/Scripts/easyui-extend.js"></script>
<script src="/Content/Scripts/jquery/jquery-ui.js"></script>
<script src="/Content/jquery-easyui-1.5/jquery.easyui.js"></script>
<script src="/Content/jquery-easyui-1.5/locale/easyui-lang-zh_CN.js"></script>*@
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width" />
<title>@ViewBag.Title</title>
@Styles.Render("~/Content/basedatamanage")
@Scripts.Render("~/bundles/basedatamanage")
@RenderSection("Header", false)
<link href="~/Content/C1/css/bootstrap.css" rel="stylesheet" />
<link rel="stylesheet" href="~/Content/styles/cetione.css" type="text/css" />
<link href="/Content/jquery-easyui-1.5/themes/gray/easyui.css" rel="stylesheet" />
<link href="~/Content/jquery-easyui-1.5/themes/icon.css" rel="stylesheet" />
<link href="~/Content/Styles/easyui-rtl.css" rel="stylesheet" />
<script src="~/Content/Scripts/framework.js"></script>
<script src="~/Content/Scripts/easyui-extend.js"></script>
<script src="/Content/Scripts/jquery/jquery-ui.js"></script>
<script src="/Content/jquery-easyui-1.5/jquery.easyui.js"></script>
<script src="/Content/jquery-easyui-1.5/locale/easyui-lang-zh_CN.js"></script>
<script src="~/Content/C1/js/jszip.min.js"></script>
<script src="~/Content/C1/js/C1Cetione.js"></script>
<style type="text/css">
    /*body*/
    body {
      font-family: 'Microsoft YaHei';
      font-size: 14px;
      color: #333;
      background-color: #F5F7F9;
      height: 100%;
      width: 100%;
      padding: 0 10px !important;
      box-sizing: border-box;
    }
    /*创建勾选的弹窗列*/
    .column-picker {
      columns: 8;
      padding: 12px;
      margin-left: 12px;
      margin-top: 26px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
    }
    .column-picker-icon {
      cursor: pointer;
      color: #FF8754;
      margin: 3px;
    }
    #theGrid.wj-flexgrid .wj-cell {
      padding: 8px;
    }
</style>

</head>
<body>
<div id="QueryArea">
    @RenderSection("QueryCondition", false)
</div>
<div id="toolbar">
    @RenderSection("ButtonArea", false)
</div>
<div id="edited" class="changed edited"></div>
<div id="gridbar" data-options="fit:true,border:false" style="width:100%;min-width:300px;">
    <div id="theGroupPanel" style="height:65px;width:100%;"></div>@*分组面板*@
    @(Html.C1().FlexGrid().Id("theGrid")
            .Filterable(fb => fb.DefaultFilterType(FilterType.Both))//查询
      //.AllowSorting(true)
      //.ShowSort(true)
      //.IsReadOnly(true)//只读
      //.AutoGenerateColumns(false)//自动生成列
      //.Height(500)//高
      //.KeyActionTab(C1.Web.Mvc.Grid.KeyAction.Cycle)//Tab切换
      //.AllowAddNew(true)
      //.AllowDelete(true)
      //.SelectionMode(C1.Web.Mvc.Grid.SelectionMode.None)
            .AllowAddNew(true)
            .AllowDelete(true)
      //.Height(500)
    )
    <div style="display:none">
      @Html.C1().ListBox().Id("theColumnPicker").CssClass("column-picker")
    </div>
    <div id="pager">
      <button id="btnFirst" class="btn"><span class="wj-glyph-step-backward"></span></button>
      <button id="btnPrev" class="btn"><span class="wj-glyph-left"></span></button>
      &nbsp;&nbsp;&nbsp;<span id="spanCurrent"></span>&nbsp;&nbsp;&nbsp;
      <button id="btnNext" class="btn"><span class="wj-glyph-right"></span></button>
      <button id="btnLast" class="btn"><span class="wj-glyph-step-forward"></span></button>
      <label id="TotalAmountShow" hidden="hidden" style="margin-left:950px;font-size:24px;">汇总金额:<span id="TotalAmount"></span></label>
      <div id="thePageRows" style="width:100px;height:35px;"></div>
    </div>
</div>
@RenderSection("Other", false)
</body>
</html>


Richard.Ma 发表于 2021-12-22 09:47:05

本帖最后由 Richard.Ma 于 2022-1-6 21:11 编辑

主要是目前没有办法确定你的错误是怎么引起的,你在vs里面可以调试看看

两个建议的检查方向:
1.引用的c1 dll看看是否正常,重新引用
2.如果有连接数据库的话,看看是否可以正常连接,


------------------
此问题和客户确认最终确定问题原因是引用的dll问题,更新后已经解决

大飞 发表于 2021-12-22 09:50:54


Richard.Ma 发表于 2021-12-22 10:00:53

您好,请上传一个能运行起来重现问题的demo,我来直接帮你看问题原因,

大飞 发表于 2021-12-22 10:08:52

Richard.Ma 发表于 2021-12-22 10:00
您好,请上传一个能运行起来重现问题的demo,我来直接帮你看问题原因,

这个是公司项目别人都可以使用,demo没办法贴出来,然后她们也不会装,以前会装的同事走了

大飞 发表于 2021-12-22 10:48:30

Richard.Ma 发表于 2021-12-22 10:19
主要是目前没有办法确定你的错误是怎么引起的,你在vs里面可以调试看看

两个建议的检查方向:


已经自行解决了

Richard.Ma 发表于 2021-12-22 11:27:48

好的,问题解决就行,如果能把解决经验分享一下就更好了
页: [1]
查看完整版本: 葡萄城2019 安装问题安装后无效