We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi I've got a limesurveyquestionnaire set up in german. Using
options(lsAPIurl = 'https://mylimesurveyinstallation.com/admin/remotecontrol') s<-12345 options(lsUser = "user") options(lsPass = "pass") lsSessionKey("set") lsGetProperties("question",s,"170")$question
I get
Error in lsAPI(method = method, params = params, lsAPIurl = lsAPIurl) : Error: Invalid questionid
Using
lsGetProperties("question",s,"170",languageCode="de")$question
works. Is there a way to set the languageCode like with options()? options(languageCode="de") did not work.
options()
options(languageCode="de")
thanks, grisuf
The text was updated successfully, but these errors were encountered:
Using formals() works. But I am not sure, if that is a good idea:
formals()
options(lsAPIurl = 'https://mylimesurveyinstallation.com/admin/remotecontrol') s<-12345 options(lsUser = "user") options(lsPass = "pass") lsSessionKey("set") formals(lsGetProperties)$languageCode<-"de" lsGetProperties("question",s,"170")$question
Does that cause conflicts?
Sorry, something went wrong.
No branches or pull requests
Hi
I've got a limesurveyquestionnaire set up in german. Using
I get
Using
works. Is there a way to set the languageCode like with
options()
?options(languageCode="de")
did not work.thanks,
grisuf
The text was updated successfully, but these errors were encountered: