- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-22-2017 08:14 AM
Hi All,
I have to create a variable with 8 choices in the type of check boxes. I used container start,split and end but still im not meeting my requirement. After split variable.Option default Label is visible in the top of choice list.I need to remove on this default Option Labels.
Please help me.... Thanks in advance...
Solved! Go to Solution.
- Labels:
-
Enterprise Asset Management
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-22-2017 08:44 AM
Hi!
I don't know why, but the 'options' label doesn't appear with a variable set. Put the label, checkboxes and containers in a variable set:
Best Regards,
Valentina
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-07-2019 01:56 PM
I have tried this with the Variable Set method and I am still seeing the same results. I am working in London Version. Has anyone gotten this to work in London?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-11-2019 06:47 AM
I got mine to work in Madrid:
All I had to do was a little DOM manipulation via creating a widget:
CLIENT SCRIPT:
function($scope, $timeout) {
var counter = 0;
var fnd = false;
$scope.f_init = function() {
if (++counter >= 100) {
console.warn("counter limit reached");
return;
}
$timeout(function() {
var div = document.getElementById('accessOption_standardAccess').parentNode;
if (div) {
if (div.getAttribute('ng-repeat') == 'column in container.columns') {
var tbl = document.createElement('table');
fnd = true;
var i = 0;
var container = [];
for (i = 0; i < div.children.length; i++) {
if (div.children[i].nodeName == "DIV") {
container.push(div.children[i]);
}
}
for (i = 0; i < container.length; i++) {
if (i % 2 === 0) {
var tr = document.createElement('tr');
var td1 = document.createElement('td');
var td2 = document.createElement('td');
td1.style.paddingLeft = "10px";
td2.style.paddingLeft = "50px";
tr.appendChild(td1);
tr.appendChild(td2);
tbl.appendChild(tr);
td1.appendChild(container[i]);
if (container[i+1])
td2.appendChild(container[i+1]);
}
}
div.appendChild(tbl);
}
}
if (!fnd) {
$scope.f_init();
}
}, 100);
};
}
HTML:
<span ng-init="f_init()"></span>

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-10-2020 09:58 AM
Hi Nick,
I am trying to do exactly what you are. Did you managed to find a solution?