|
|
@@ -0,0 +1,63 @@
|
|
|
+<?xml version="1.0" encoding="UTF-8"?>
|
|
|
+<ui_table xmlns="https://biuro.biall-net.pl/dev-pl/se-master/schema/gui/table.gui.xsd"
|
|
|
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
+ xmlns:ogc="http://www.opengis.net/ogc">
|
|
|
+ <!--
|
|
|
+sf_Problemy
|
|
|
+ $fltrs['Problemy'] = new stdClass();
|
|
|
+ $fltrs['Problemy']->icon = 'glyphicon glyphicon-warning-sign';
|
|
|
+ $fltrs['Problemy']->btns = array();
|
|
|
+ $fltrs['Problemy']->btns['PROBLEMY'] = (object)array('value'=>'PROBLEM');
|
|
|
+ $fltrs['Problemy']->btns['OSTRZEZENIA'] = (object)array('value'=>'WARNING');
|
|
|
+ $fltrs['Problemy']->btns['BEZ_PROBLEM.'] = (object)array('value'=>'NORMAL');
|
|
|
+sf_Status
|
|
|
+ $fltrs['Status'] = new stdClass();
|
|
|
+ $fltrs['Status']->icon = 'glyphicon glyphicon-question-sign';
|
|
|
+ $fltrs['Status']->btns = array();
|
|
|
+ $fltrs['Status']->btns['OCZEKUJACY'] = (object)array('value'=>'WAITING');
|
|
|
+ $fltrs['Status']->btns['AKTYWNI'] = (object)array('value'=>'AKTYWNI');
|
|
|
+sf_Spotkania
|
|
|
+ $fltrs['Spotkania'] = new stdClass();
|
|
|
+ $fltrs['Spotkania']->icon = 'glyphicon glyphicon-calendar';
|
|
|
+ $fltrs['Spotkania']->btns = array();
|
|
|
+ $fltrs['Spotkania']->btns['STARE'] = (object)array('value'=>'OLD');
|
|
|
+ $fltrs['Spotkania']->btns['ZARAZ'] = (object)array('value'=>'NOW');
|
|
|
+ $fltrs['Spotkania']->btns['DZISIAJ'] = (object)array('value'=>'TODAY');
|
|
|
+ $fltrs['Spotkania']->btns['BRAK'] = (object)array('value'=>'BRAK');
|
|
|
+sf_Access
|
|
|
+ $fltrs['Access'] = new stdClass();
|
|
|
+ $fltrs['Access']->icon = 'glyphicon glyphicon-lock';
|
|
|
+ $fltrs['Access']->btns = array();
|
|
|
+ $fltrs['Access']->btns['Pokaż'] = (object)array('value'=>'SHOW');
|
|
|
+ -->
|
|
|
+ <filters>
|
|
|
+ <filter>
|
|
|
+ <label>Status</label>
|
|
|
+ <icon>question-sign</icon>
|
|
|
+ <name>sf_Status</name>
|
|
|
+ <buttons>
|
|
|
+ <button>
|
|
|
+ <name>OCZEKUJACY</name>
|
|
|
+ <value>WAITING</value>
|
|
|
+ <ogc:Filter>
|
|
|
+ <ogc:PropertyIsEqualTo>
|
|
|
+ <ogc:PropertyName>A_STATUS</ogc:PropertyName>
|
|
|
+ <ogc:Literal>WAITING</ogc:Literal>
|
|
|
+ </ogc:PropertyIsEqualTo>
|
|
|
+ </ogc:Filter>
|
|
|
+ </button>
|
|
|
+ <button>
|
|
|
+ <name>AKTYWNI</name>
|
|
|
+ <value>AKTYWNI</value>
|
|
|
+ <ogc:Filter>
|
|
|
+ <!-- TODO: in('NORMAL', 'WARNING') -->
|
|
|
+ <ogc:PropertyIsEqualTo>
|
|
|
+ <ogc:PropertyName>A_STATUS</ogc:PropertyName>
|
|
|
+ <ogc:Literal>NORMAL</ogc:Literal>
|
|
|
+ </ogc:PropertyIsEqualTo>
|
|
|
+ </ogc:Filter>
|
|
|
+ </button>
|
|
|
+ </buttons>
|
|
|
+ </filter>
|
|
|
+ </filters>
|
|
|
+</ui_table>
|