diff options
author | Robert Jaros <rjaros@finn.pl> | 2020-05-20 15:11:04 +0200 |
---|---|---|
committer | Robert Jaros <rjaros@finn.pl> | 2020-05-20 15:11:04 +0200 |
commit | 6c1c0e7bb02843a8088a011dbfb224605c201dd7 (patch) | |
tree | db0f8735f75d700afa1f2af4a1ab29f3818962a8 /kvision-modules/kvision-tabulator-remote | |
parent | 432ce23431a77d76c48ca9abe464efeb4f0885bb (diff) | |
download | kvision-6c1c0e7bb02843a8088a011dbfb224605c201dd7.tar.gz kvision-6c1c0e7bb02843a8088a011dbfb224605c201dd7.tar.bz2 kvision-6c1c0e7bb02843a8088a011dbfb224605c201dd7.zip |
Support relative links for remote endpoints
Diffstat (limited to 'kvision-modules/kvision-tabulator-remote')
-rw-r--r-- | kvision-modules/kvision-tabulator-remote/src/main/kotlin/pl/treksoft/kvision/tabulator/TabulatorRemote.kt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kvision-modules/kvision-tabulator-remote/src/main/kotlin/pl/treksoft/kvision/tabulator/TabulatorRemote.kt b/kvision-modules/kvision-tabulator-remote/src/main/kotlin/pl/treksoft/kvision/tabulator/TabulatorRemote.kt index e4473ed8..e61ced55 100644 --- a/kvision-modules/kvision-tabulator-remote/src/main/kotlin/pl/treksoft/kvision/tabulator/TabulatorRemote.kt +++ b/kvision-modules/kvision-tabulator-remote/src/main/kotlin/pl/treksoft/kvision/tabulator/TabulatorRemote.kt @@ -61,7 +61,7 @@ open class TabulatorRemote<T : Any, E : Any>( ) : Tabulator<T>(null, false, options, types, classes) { private val kvUrlPrefix = window["kv_remote_url_prefix"] - private val urlPrefix: String = if (kvUrlPrefix != undefined) kvUrlPrefix else "" + private val urlPrefix: String = if (kvUrlPrefix != undefined) "$kvUrlPrefix/" else "" init { val (url, method) = @@ -69,7 +69,7 @@ open class TabulatorRemote<T : Any, E : Any>( ?: throw IllegalStateException("Function not specified!") val callAgent = CallAgent() - options.ajaxURL = urlPrefix + url + options.ajaxURL = urlPrefix + url.drop(1) options.ajaxRequestFunc = { _, _, params -> val page = params.page val size = params.size |