原文地址 Create modal dialog form in jquery using bootstrap framework, slightly different from the usual way of jquery-ui. In bootstrap tutorial, we create modal dialog form like the example below 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22…
An example is given below to how to create a modal dialog window in Oracle Forms for asking user input and return the value to any text item.   The following is the screen shot of this demo and this form could be downloaded from the following link: C…
本篇体验用Tab插件显示内容.Html部分为: <div class="row" id="moreInfo"> <div class="col-sm-6"> <h3>兰帕德宣布退出英格兰队</h3> <div class="tabbable"> <ul class="nav nav-tabs"> <li class="a…
这张开始bootstrap table,引入项目有两种方法,一种是直接去官网下载 地址:http://bootstrap-table.wenzhixin.net.cn/ 另一种是Nuget引入. 然后就是把js引用到项目中来,其实Bootstrap js 还有jQuery我们在模板页已经引进了,这里只需要引入bootstrap table相关的js以及中文包就可以了 <link href="~/Scripts/Content/bootstrap-table/bootstrap-table.…
返回总目录:ABP+AdminLTE+Bootstrap Table权限管理系统一期 用户实体 用户实体代表应用的一个用户,它派生自AbpUser类,如下所示: public class User : AbpUser<Tenant, User> { //add your own user properties here } 这个类是在安装模块零时创建的.用户存储在数据库的AbpUsers表中.您可以将自定义属性添加到User类(并为更改创建数据库迁移). AbpUser类定义了一些基本属性.一…
上节我们把布局页,也有的临时的菜单,但是菜单不是应该动态加载的么?,所以我们这节来写菜单.首先我们看一下AdminLTE源码里面的菜单以及结构. <aside class="main-sidebar"> <!-- sidebar: style can be found in sidebar.less --> <section class="sidebar"> <!-- Sidebar user panel --> &l…
AdminLTE 官网地址:https://adminlte.io/themes/AdminLTE/index2.html 首先去官网下载包下来,然后引入项目. 然后我们在web层添加区域Admin以及Common,关于AdminLTE的地址我们放在Common路劲下面. 在Common下添加LayoutController控制器. 这里菜单我们先不管,在后面的章节我在加上,首先是_Layout页代码: @{ Layout = null; } @using System.Web.Optimiza…
返回总目录:ABP+AdminLTE+Bootstrap Table权限管理系统一期 AdminLTE AdminLTE 官网地址:https://adminlte.io/themes/AdminLTE/index2.html 首先去官网下载包下来,然后引入项目. 然后我们在web层添加区域Admin以及Common,关于AdminLTE的地址我们放在Common路劲下面. 在Common下添加LayoutController控制器. Layout 这里菜单我们先不管,在后面的章节我在加上,首先…
SharePoint 2010 Modal Dialog Tweet   Modal dialog play very important role to improve the user experience by reducing the number of postbacks. So, SharePoint 2010 comes up with in-build API to show modal dialog to improve the user experience. Here, I…
返回总目录:ABP+AdminLTE+Bootstrap Table权限管理系统一期 第一点,上一篇文章中我们讲到codefirst中一些问题包括如图,codefirst在每次执行命令的时候会生成新的类,后来会越来越多. 1,codefirst在执行的数据库迁移过程中产生了很多文件,对于强迫症的我而言特别不爽,这些其实是可以不用生成的. 2,在codefirst实际开发过程的冲突 3,每次增加一个表或者增删改一个字段都要去敲命令,好麻烦 4,数据库初始化的时候,不用把很多东西写入程序里面. 5,…