<div dir="ltr">I have a need to display a value like this so the user can see the value. I don&#39;t want the user to be able to edit the value though. Is this possible?<br><div><div><br>        def _filter(name):<br>            filtered = &quot;&quot;<br>
            for char in str(name):<br>                if char in chirp_common.CHARSET_ASCII:<br>                    filtered += char<br>                else:<br>                    filtered += &quot; &quot;<br>            return filtered<br>
<br>        _msg = self._memobj.firmware_msg<br>        if self._my_version() &gt;= 299:<br>            rs = RadioSetting(&quot;firmware_msg.line1&quot;, &quot;Firmware version(read only)&quot;,<br>                              RadioSettingValueString(0, 7, _filter(_msg.line1)))<br>
            other.append(rs)<br>        else:<br>            rs = RadioSetting(&quot;firmware_msg.line2&quot;, &quot;Firmware version(read only)&quot;,<br>                          RadioSettingValueString(0, 7, _filter(_msg.line2)))<br>
            other.append(rs)<br><br><br></div><div>Jim KC9HI<br></div></div></div>