Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'd like to change the default selection template on ListView items. By default a 3 pixel wide gray border is applied to the currently selected item(s):

enter image description here

I did find in ui.js is that internally the _selectionTemplate property is set to the default border:

var selectionBorder = createNodeWithClass(WinJS.UI._selectionBorderContainerClass);
selectionBorder.appendChild(createNodeWithClass(WinJS.UI._selectionBorderClass + " " + WinJS.UI._selectionBorderTopClass));
selectionBorder.appendChild(createNodeWithClass(WinJS.UI._selectionBorderClass + " " + WinJS.UI._selectionBorderRightClass));
selectionBorder.appendChild(createNodeWithClass(WinJS.UI._selectionBorderClass + " " + WinJS.UI._selectionBorderBottomClass));
selectionBorder.appendChild(createNodeWithClass(WinJS.UI._selectionBorderClass + " " + WinJS.UI._selectionBorderLeftClass));

this._selectionTemplate = [];
this._selectionTemplate.push(createNodeWithClass(WinJS.UI._selectionBackgroundClass));
this._selectionTemplate.push(selectionBorder);
this._selectionTemplate.push(createNodeWithClass(WinJS.UI._selectionCheckmarkBackgroundClass));
var checkmark = createNodeWithClass(WinJS.UI._selectionCheckmarkClass);
checkmark.innerText = WinJS.UI._SELECTION_CHECKMARK;
this._selectionTemplate.push(checkmark);

However as _selectionTemplate is meant to be private it would seem to go against ListView design to modify the _selectionTemplate property itself. Is there a better workaround for modifying this default selection template?

share|improve this question
2  
Its the CSS class that's it's adding that you need to override; you can then add your own CSS class to set the widths that you want to set. – Dominic Hopton Aug 24 '12 at 15:34

1 Answer

up vote 6 down vote accepted

Override the CSS class used by the default template. For example this will change the border to red:

.win-listview .win-container:hover{
    outline: rgba(255, 0, 0, 0.3) solid 3px;
}
share|improve this answer
Wish I could vote this answer up more than once! – Aki Feb 6 at 12:08

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.