diff --git a/webui/index.html b/webui/index.html
index 75eaa1d5a..f6bc369de 100644
--- a/webui/index.html
+++ b/webui/index.html
@@ -40,17 +40,22 @@
PQL
- SetBit(frame=foo, rowID=0, columnID=0)
- ClearBit(frame=foo, rowID=0, columnID=0)
- SetRowAttrs(frame=foo, rowID=0, color="blue")
- SetColumnAttrs(frame=foo, columnID=0, shape="circle")
- Bitmap(frame=foo, rowID=0)
- Range(frame=foo, rowID=0, start="2010-01", end="2017-03")
- Count(<BITMAP_CALL>)
- TopN([BITMAP_CALL], frame=foo, n=20)
- Union([BITMAP_CALL, ...])
- Intersect(<BITMAP_CALL>, [BITMAP_CALL, ...])
- Difference(<BITMAP_CALL>, <BITMAP_CALL>)
+ SetBit(frame=foo, row=0, col=0)
+ ClearBit(frame=foo, row=0, col=0)
+ SetRowAttrs(frame=foo, row=0, color="blue")
+ SetColumnAttrs(frame=foo, col=0, shape="circle")
+ SetFieldValue(frame=foo, col=0, age=30)
+ Bitmap(frame=foo, row=0)
+ Range(frame=foo, row=0, start="2010-01", end="2017-03")
+ Count(<BITMAP_CALL>)
+ TopN([BITMAP_CALL], frame=foo, n=20)
+ Union([BITMAP_CALL, ...])
+ Intersect(<BITMAP_CALL>, [BITMAP_CALL, ...])
+ Difference(<BITMAP_CALL>, <BITMAP_CALL>)
+ Xor([BITMAP_CALL, ...])
+ Min([BITMAP_CALL], frame=foo, field=age)
+ Max([BITMAP_CALL], frame=foo, field=age)
+ Sum([BITMAP_CALL], frame=foo, field=age)
Special commands