Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
Is it possible, to get a one selection function in a multibox field?
This function must work in the IE plugin.
Who knows how i can do that?
hi dirkgroen,
Select one value in the multibox. Then go to presentation --> on right down you will see Always one selected box.
thank you.
I had not seen that option
Greetz, Dirk
HI,
For this you have to select at least 1 value and from your Multibox ... and it should be direct Field.
Its not applicable for calulated dimensions or expressions.
MultiBOx > Properties > check now "Allways one selected"
I hope this will work
can you set this function on and off with a action or Macro?
Greetz,
Dirk
With this two Macro's you can set this function on and off
Sub SetOnlyOne
ActiveDocument.Fields("KlantreferentieCode").Select "01"
set KR=ActiveDocument.GetField("KlantreferentieCode")
wSel=KR.GetSelectedValues.Count
if wSel=1 then
set prop = KR.GetProperties
prop.OneAndOnlyOne = true
KR.SetProperties prop
end if
End Sub
Sub SetOnlyOneOff
ActiveDocument.Fields("KlantreferentieCode").Select "01"
set KR=ActiveDocument.GetField("KlantreferentieCode")
wSel=KR.GetSelectedValues.Count
if wSel=1 then
set prop = KR.GetProperties
prop.OneAndOnlyOne = false
KR.SetProperties prop
end if
End Sub
Greetz,
Dirk
i thought i had the sollution, but this one doesn't work with the IE plugin.
Who can help me with te right sollution?
Is there nobody who can give the right solution?
hi,
Did you try it after enbaling "Run Macro on Server" option.
YOu will find this option in QMC--> Qlikview Server Setting--> Security.
Here a post, that handles the same problem: