You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I realized that, when is would use a function like distributionGroupsEndpoint(), that at the end of url the query parameter is empty.
When i use fix source link, the query is computed, the paramteter is on the end of link, but in the solution of :source="distributionGroupsEndpoint" is not.
I tried reading value from the hidden input by name, but failed.
Here is my part of js code in vue extend:
methods: {
distributionGroupsEndpoint () {
console.log("autocTesztn=");
console.log($("hidden[name="autocTeszt"]").val());
The text was updated successfully, but these errors were encountered:
simong78
changed the title
in function of distributionGroupsEndpoint query is empty
in function of distributionGroupsEndpoint query parameter is empty
Mar 27, 2018
Hy,
I realized that, when is would use a function like distributionGroupsEndpoint(), that at the end of url the query parameter is empty.
When i use fix source link, the query is computed, the paramteter is on the end of link, but in the solution of :source="distributionGroupsEndpoint" is not.
I tried reading value from the hidden input by name, but failed.
Here is my part of html code in vue template :
<autocomplete
ref="autocomplete"
input-class="form-control"
:source="distributionGroupsEndpoint"
results-property="data"
results-display="name"
name="autocTeszt"
@selected="testSelect">
Here is my part of js code in vue extend:
methods: {
distributionGroupsEndpoint () {
console.log("autocTesztn=");
console.log($("hidden[name="autocTeszt"]").val());
}
I make something wrong?
Thank You,
simong
The text was updated successfully, but these errors were encountered: