mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-14 15:05:35 +02:00
Fixes for rendering of DateField in Table, Button event fixes
This commit is contained in:
@@ -43,6 +43,7 @@
|
||||
#include "Poco/WebWidgets/TextFieldCell.h"
|
||||
#include "Poco/WebWidgets/ComboBoxCell.h"
|
||||
#include "Poco/WebWidgets/ButtonCell.h"
|
||||
#include "Poco/WebWidgets/DateFieldCell.h"
|
||||
#include "Poco/NumberFormatter.h"
|
||||
|
||||
|
||||
|
@@ -41,6 +41,7 @@
|
||||
#include "Poco/WebWidgets/ComboBoxCell.h"
|
||||
#include "Poco/WebWidgets/ButtonCell.h"
|
||||
#include "Poco/WebWidgets/NumberFieldCell.h"
|
||||
#include "Poco/WebWidgets/DateFieldCell.h"
|
||||
|
||||
|
||||
namespace Poco {
|
||||
@@ -84,6 +85,10 @@ TableCellHandlerFactory::TableCellHandlerFactory()
|
||||
TableCellHandler<ImageButtonCell>::Ptr pHandle(new TableCellHandler<ImageButtonCell>(false, true));
|
||||
registerFactory(typeid(ImageButtonCell), pHandle);
|
||||
}
|
||||
{
|
||||
TableCellHandler<DateFieldCell>::Ptr pHandle(new TableCellHandler<DateFieldCell>(true, true));
|
||||
registerFactory(typeid(DateFieldCell), pHandle);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user