-
Notifications
You must be signed in to change notification settings - Fork 284
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1428 from MitrahSoft/Added_a_examples_27/03/2024
Added examples and description for lucee docs
- Loading branch information
Showing
5 changed files
with
47 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,4 @@ | ||
*There are currently no examples for this function.* | ||
```luceescript+trycf | ||
enc = EncodeForXPath( "<cfscript>", true ); | ||
writeDump( enc ); | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
This is the query object from which you want to extract the column data. It should be a valid query object. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,19 @@ | ||
*There are currently no examples for this tag.* | ||
```lucee+trycf | ||
<cfform name="mycfform"> | ||
-- year -- | ||
<br /> | ||
<cfselect name="year" enabled=true style="color:blue;" size=2> | ||
<option name="0" selected=true>--2024--</option> | ||
<option name="1">--2023--</option> | ||
<option name="3">--2022--</option> | ||
<option name="2">--2021--</option> | ||
</cfselect> <br /> | ||
-- color -- | ||
<br /> | ||
<cfselect name="color" > | ||
<option name="0">--red--</option> | ||
<option name="1">--green--</option> | ||
<option name="2">--blue--</option> | ||
</cfselect> | ||
</cfform> | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,19 @@ | ||
*There are currently no examples for this tag.* | ||
```lucee+trycf | ||
<cfform name="mycfform"> | ||
-- year -- | ||
<br /> | ||
<cfselect name="year" enabled=true style="color:blue;" size=2> | ||
<option name="0" selected=true>--2024--</option> | ||
<option name="1">--2023--</option> | ||
<option name="3">--2022--</option> | ||
<option name="2">--2021--</option> | ||
</cfselect> <br /> | ||
-- color -- | ||
<br /> | ||
<cfselect name="color" > | ||
<option name="0">--red--</option> | ||
<option name="1">--green--</option> | ||
<option name="2">--blue--</option> | ||
</cfselect> | ||
</cfform> | ||
``` |
4 changes: 4 additions & 0 deletions
4
docs/03.reference/05.objects/string/encodeforxpath/_examples.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
```luceescript+trycf | ||
enc='<cfscript>'.EncodeForXPath(); | ||
writeDump( enc ); | ||
``` |