Artyom Mezin
Artyom Mezin
Why sort in table not working when I use `protected function _getSelect()` ? I use group by virtual field and sort by real field... and can't get it working =(
> maybe sorting is done on client side (javascript) - so the server-side sorting has no effect? With this part of code: ``` php protected function _getOrder($order) { return null;...
Also how can I set custom order like this: ``` sql ORDER BY `flightMessages`.`time` < '06:00' ``` ? KWF shows me error on `protected $_defaultOrder = "time < '06:00'";` It's...
> where is that code? _getSelect()? Yes. > Please have a look at this code: https://github.com/koala-framework/koala-framework/blob/3.8/Kwf/Controller/Action/Auto/Grid.php#L287 plus 5 lines above, you can probably find a solution with that... What solution?...
Sad. What the main problem to put more than one filter of selected type?
Found something, but it for 4.1 ExtJS version: https://www.sencha.com/forum/showthread.php?242382-Input-mask-plugin-jquery-port http://developerextensions.com/index.php/help/27-Do-you-have-an-input-mask-using-Extjs-4--I-tired-convert-your-code-to-Extjs-4-but-it-gives-an-error
Yes.
@nsams , Can you reopen this issue? > You can place that in you app In `js` folder? I found better example for ExtJS: https://www.sencha.com/forum/showthread.php?21040-InputTextMask-plugin-for-Textfield My edition (Ext to Ext2,...
@nsams Can you help me what I missed in my js code? https://gist.github.com/Sogl/3d97df0a246cecea5b9f I can't understand where I need to put this line: ``` javascript Kwf.Form.InputTextMask = Ext2.extend ``` Also...
> The InputTextMask is not a field itself, it's just a plugin! So...I don't need to change original file in forum? > Create one like so As I can see,...