Skip to content

Commit 0b26016

Browse files
committed
changed image urls
1 parent 32aa317 commit 0b26016

2 files changed

+4
-8
lines changed

docs/en/Feature-Dynamic-Entity-Parameters-Custom-Input-Types-Angular.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
2-
31
# Create Custom Input Types
42

53
In this document we will create a custom input type step by step. Our input type is multi-select combobox input type.
@@ -132,4 +130,4 @@ In this document we will create a custom input type step by step. Our input type
132130

133131
All done. Your custom input type is ready to use in dynamic parameter. Create new dynamic parameter which uses that input type, add it to an entity. Then you can go to manage page and use it.
134132

135-
![custom-input-type-multi-select-combobox-mvc](images\custom-input-type-multi-select-combobox-angular.png)
133+
![custom-input-type-multi-select-combobox-mvc](images/custom-input-type-multi-select-combobox-angular.png)

docs/en/Feature-Dynamic-Entity-Parameters-Custom-Input-Types-Mvc.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
2-
31
# Create Custom Input Types
42

53
In this document we will create a custom input type step by step. Our input type is multi-select combobox input type.
@@ -35,7 +33,7 @@ In this document we will create a custom input type step by step. Our input type
3533

3634
4. Go to `*.Web.Mvc\wwwroot\view-resources\Areas\AppAreaName\Views\Common\IInputTypes\` folder
3735

38-
5. Create new javascript file named `MultiSelectComboboxInputType.js` and fill required functions.
36+
5. Create new JavaScript file named `MultiSelectComboboxInputType.js` and fill required functions.
3937

4038
```javascript
4139
var MultiSelectComboBoxInputType = (function () {
@@ -84,7 +82,7 @@ In this document we will create a custom input type step by step. Our input type
8482
init: init,
8583
getSelectedValues: getSelectedValues,
8684
getView: getView,
87-
hasValues: true,//is that input type need values to work. For example dropdown need values to select.
85+
hasValues: true, // is that input type need values to work. For example dropdown need values to select.
8886
afterViewInitialized: afterViewInitialized
8987
};
9088
};
@@ -148,4 +146,4 @@ In this document we will create a custom input type step by step. Our input type
148146

149147
All done. Your custom input type is ready to use in dynamic parameter. Create new dynamic parameter which uses that input type, add it to an entity. Then you can go to manage page and use it.
150148

151-
![custom-input-type-multi-select-combobox-mvc](images\custom-input-type-multi-select-combobox-mvc.png)
149+
![custom-input-type-multi-select-combobox-mvc](images/custom-input-type-multi-select-combobox-mvc.png)

0 commit comments

Comments
 (0)