I am not sure, if there is similar question answered here, but I cannot find it. Is it possible to find out all columns in the table? For example:
<!--Data Tables: Channels of a Sensor--> <div class="map_object map_table" id="<@itemid>" objectid="<@objectid>" subid="<@subid>" style="overflow:auto;<#mapobject type="coordinates" subid="<@subid>" mode="<@editmode>">"> <#mapobject type="objectgrip" mode="<@editmode>"> <#mapobject type="htmlbefore" subid="<@subid>"> <#checkobjecttype objecttype="sensor" nicemessage="true" id="<@objectid>"> <div class="maptablecontainer" style="overflow:hidden;background-color:#fff;"> <b><#objectproperty name="Name" id="<@objectid>" show="link"></b> <#table tableid="channeltable_map" id="<@objectid>" content="channels" columns="name,lastvalue_" sortby="name" sortable="false" links="false" > </div> <#mapobject type="htmlafter" subid="<@subid>"> </div>
I want to know what else can I see in the table except those two predefined values? (columns="name,lastvalue_" )
Add comment