Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/.vuepress/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -394,11 +394,12 @@ module.exports = config({
['/en/developer-guide/applications/controls/optionseticons.md', 'Optionset Icons'],
['/en/developer-guide/applications/controls/phonepicker.md', 'Phone Picker'],
['/en/developer-guide/applications/controls/quicklookupedit.md', 'Quick Lookup Edit'],
['/en/developer-guide/applications/controls/quicklookupsimpleedit.md', 'Quick Lookup Simple Edit'],
['/en/developer-guide/applications/controls/rating.md', 'Rating'],
['/en/developer-guide/applications/controls/treeview.md', 'Tree View'],
['/en/developer-guide/applications/controls/wbs.md', 'WBS - Work Breakdown Structure']
]
},
},
{
title: 'Web Portal',
collapsable: true,
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
127 changes: 127 additions & 0 deletions src/en/developer-guide/applications/controls/quicklookupsimpleedit.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,127 @@
---
Author: Safija Hubljar
---
# Quick Lookup Simple Edit

<p>The Quick Lookup Simple Edit control enhances the ability to edit lookup values easily. Users can:</p>
<ul>
<li>Copy values with a single click on the icon</li>
<li>Delete records by clicking the delete icon</li>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

*Dissociate

<li>Open connected URLs directly by clicking the link icon</li>
</ul>
<p>Additionally, clicking on a field opens the editing dialog.</p>


<img src='/.attachments/applications/Controls/quicklookupsimpleedit-1.png' width="300px" />
<img src='/.attachments/applications/Controls/quicklookupsimpleedit.png' width="300px" />


## Bindings

<table>
<thead>
<tr>
<th>Property Name</th>
<th>Description</th>
<th>Of Type</th>
<th>Input</th>
<th>Output</th>
<th>Usage</th>
<th>Required</th>
</tr>
</thead>
<tbody>
<tr>
<td>bindingField</td>
<td>A binding field to bind the control to.</td>
<td><code>Lookup.Simple</code></td>
<td>
<code>{ entityType: "talxis_address", </br> id: "d5fa380a-aa37-ef11-8409-0022489d8923", </br> name: "K pérovně 945/7, Hostivař, 10200 Praha 10" }</code>
</td>
<td>
<code>{ entityType: "talxis_address", </br> id: "d5fa380a-aa37-ef11-8409-0022489d8923", </br> name: "K Pérovně 945/7, Hostivař, 10200 Praha 18, Czech Republic" }</code>
</td>
<td><code>bound</code></td>
<td><code>true</code></td>
</tr>
<tr>
<td>customButtonIcon</td>
<td>Icon of custom button.</td>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should contain information that you can only use Fluent UI icons

<td><code>SingleLine.Text</code></td>
<td>
<code>POI</code>
</td>
<td>N/A</td>
<td><code>input</code></td>
<td><code>false</code></td>
</tr>
<tr>
<td>customButtonUrl</td>
<td>URL of custom button.</td>
<td><code>SingleLine.Text</code></td>
<td>
<code>https://www.google.com/maps/search/?api=1&query=50.0662464,14.5293889</code>
</td>
<td>N/A</td>
<td><code>input</code></td>
<td><code>false</code></td>
</tr>
<tr>
<td>customButtonLabel</td>
<td>Label of custom button.</td>
<td><code>SingleLine.Text</code></td>
<td>
<code>Submit</code>
</td>
<td>N/A</td>
<td><code>input</code></td>
<td><code>false</code></td>
</tr>
<tr>
<td>customButtonExpandQuery</td>
<td>Expand Query to pass to WebAPI to obtain data which are passed to CustomButtonUrl LiquidMapper.</td>
<td><code>SingleLine.Text</code></td>
<td>
<code>select * from accounts where status='active'</code>
</td>
<td>N/A</td>
<td><code>input</code></td>
<td><code>false</code></td>
</tr>
<tr>
<td>enableCopyButton</td>
<td>Enable Copy Button.</td>
<td><code>SingleLine.Text</code></td>
<td>
<code>true</code>
</td>
<td>N/A</td>
<td><code>input</code></td>
<td><code>false</code></td>
</tr>
<tr>
<td>formId</td>
<td>ID of the form.</td>
<td><code>SingleLine.Text</code></td>
<td>
<code>0f98e335-c08a-4921-b925-09ef9a517c12</code>
</td>
<td>N/A</td>
<td><code>input</code></td>
<td><code>false</code></td>
</tr>
<tr>
<td>openFormWidth</td>
<td>Width of the form opened in percentage.</td>
<td><code>Whole.None</code></td>
<td>
<code>60</code>
</td>
<td>N/A</td>
<td><code>input</code></td>
<td><code>false</code></td>
</tr>
</tbody>
</table>