Dynamic Tree and Data Table of SPA Project
Catalog
Tree menu
Data tables and paging
This is my project hierarchy.
Tree menu
Today is based on the last improvement, access to background data, dynamic display of the tree menu, and then the menu can click to jump to different pages.
The data used the code of the last SSH tree menu and Book ...
Added by dyconsulting on Mon, 07 Oct 2019 20:25:09 +0300
Process variables of activity
Setting parameters:
public class ProcessVariablesTest {
ProcessEngine processEngine = ProcessEngines.getDefaultProcessEngine();
/**Deployment process definition (from InputStream)*/
@Test
public void deploymentProcessDefinition_inputStream(){
InputStream inputStreambpmn = this.getClass().get ...
Added by Duxie on Mon, 07 Oct 2019 01:48:07 +0300
Using JavaScript Custom Events to Complete Data Communication between Components
We know that native DOM events are useful in JavaScript development (an important way to interact with users), but there are two major drawbacks to operating native DOM events: low performance, browser dependency (NodeJs, widgets, etc. are not available). At this point, we need to customize events to handle certain specific businesses.
The disp ...
Added by ratass2002 on Sun, 06 Oct 2019 21:11:13 +0300
iOS positioning plus pins
Links to the original text: https://my.oschina.net/zyboy/blog/617431
Location of Map Combination 1. Same part as single positioning IOS 8 + Must Ask User's Consent 2. Different P ...
Added by marcth on Sat, 05 Oct 2019 19:01:57 +0300
Mybatis in-depth and shallow learning three (dynamic sql sentence analysis of Mybatis)
The basic syntax for splicing Mybatis dynamic sql depends on < if > tags and < Where > tags.
The < foreach > tag is used in traversal
Demand one
Query object is wrapped by wrapping class, and sql statement is stitched dynamically according to the attribute of object.
Packaging cla ...
Added by lisa3711 on Sat, 05 Oct 2019 17:46:58 +0300
Android Framework Learning; A Smart and Powerful Key-Value Management Framework
DoKV
DoKV is a compact and powerful Key-Value management framework designed to solve all kinds of tedious and ugly configuration class codes on Android platform.
Download
dependencies {
implementation 'leavesc.hello:dokv:0.1.8'
annotationProcessor 'leavesc.hello:dokv-compiler:0.1.8'
}
If you don't want to customize the serialization sc ...
Added by Jezza22 on Sat, 05 Oct 2019 14:35:22 +0300
WPF-Data Trigger
Triggers basically enable you to change property values or act on them. Therefore, it allows you to dynamically change the appearance and/or behavior of controls without creating new controls.
Triggers are used to change the value of any given property when certain conditions are met. Triggers are usual ...
Added by ThisIsMyName on Sat, 05 Oct 2019 12:40:25 +0300
Several Inheritance Ways of JavaScript
Let's first construct a Person constructor
function Person(name) {
this.name=name;
}
Person.prototype.sayHi=function () {
console.log(this.name+",Hello!");
}
Then several inheritance modes are demonstrated by constructing the Student constructor.
1. Inheritance through prototype chain
function Student( ...
Added by ndorfnz on Sat, 05 Oct 2019 12:36:43 +0300
The Use of yii2-girdView: The Use of DateRange Picker
Use scenarios: filter data by date
Following are common code blocks for individuals:
<?php
use yii\helpers\Html;
use kartik\grid\GridView;
$visible ? $url = 'awards' : $url = 'index';
?>
<div class="awards-record-index">
<?= GridView::widget([
'dataProvider' => $dataProvider,
' ...
Added by KYarb on Sat, 05 Oct 2019 12:34:20 +0300
requests High Order & BS4
requests High Order & BS4
Article directory
1. High-order usage of requests
2.BeautifulSoup library usage
requests High Order & BS4
Yesterday's review:
requests:
get(url, headers, params, proxies)
post(url, headers, data, proxies)
xpath:
/
//
nodename
nodename[@attribute="..."]
text()
@att ...
Added by mikewhy on Sat, 05 Oct 2019 09:49:45 +0300