Move button styles out of english.xml

Post Reply
Chris
User
Posts: 162

Move button styles out of english.xml

Post by Chris »

It becomes cumbersome to maintain multiple xml files, particularly when all I'm changing is the trash icon classes etc., i.e.

phrase id="DeleteLink" value="Delete" class="glyphicon glyphicon-trash ewIcon"


cedracu
User
Posts: 5

Post by cedracu »

alternatively you can use Language_Load server event (see help file):

function Language_Load() {
$this->setPhrase("MyID", "MyValue"); // Refer to language file for the actual phrase id
$this->setPhraseClass("MyID", "glyphicon glyphicon-xxx ewIcon"); // Refer to http://getbootstrap.com/components/#glyphicons for icon name
}


Post Reply