summaryrefslogtreecommitdiff
path: root/framework/Web
AgeCommit message (Collapse)Author
2017-01-18Fix #610 (prado-3.3)Fabio Bas
2017-01-15Fix #625 (prado-3.3 branch)Fabio Bas
2016-12-16Fix #619.LCSKJ
2016-11-03Added basic support for html5 new input typesFabio Bas
fix #613
2016-08-23Prepare release 3.3.2Fabio Bas
2016-08-23Fix #608Fabio Bas
2016-08-10Small doc addition; refs #607Fabio Bas
2016-08-09Fix #607Fabio Bas
2016-07-03Ensure correct loading of TJuiControls callback parametersFabio Bas
2016-06-21Fix #604Fabio Bas
2016-06-10Fixed typoJens Klaer
2016-05-31Fix #597Fabio Bas
2016-05-17Implement TControl::__isset() to check for sub controlsFabio Bas
Fix #594
2016-05-11Serialize all inputs to catch nuts outside <form>Fabio Bas
2016-05-11Partially revert cc53959ac5ba3e786f3d6ad3403919b82c52fa42 to fix #592Fabio Bas
2016-05-08Support for hyphenated attributes via <prop:*></prop:*> template syntaxemkael
2016-04-20Constructor parent call to allow TStyle behaviorsJens Klaer
2016-04-19Prepare for 3.3.1 releaseFabio Bas
2016-04-06Possibly fix #581Fabio Bas
2016-04-04Merge pull request #579 from pradosoft/fix_562ctrlaltca
Added TClientStyleSheet::PradoStyles
2016-03-30Added TClientStyleSheet::PradoStyles - fix #562Fabio Bas
2016-03-29rename __getZappableSleepProps to _getZappableSleepPropsFabio Bas
2016-03-29Removed deprecated codeFabio Bas
2016-03-29Fixed 10 "critical" issues found by scrutinizerFabio Bas
* create function => closures * removed var_dump from tests
2016-03-29partially revert cc53959ac5ba3e786f3d6ad3403919b82c52fa42; fix #577Fabio Bas
2016-03-29Fix suggestion display for dynamically-created, initially-hidden TJuiControlFabio Bas
2016-03-29Js: Prado.Element.focus: wait for all callbacks to finish before focusing ↵Fabio Bas
the element
2016-03-29Js: restored 100ms delay on Prado.Element.focusFabio Bas
2016-03-25TRecaptcha2: small fixFabio Bas
2016-03-24Added TReCaptcha2 and wrote doc; fix #560Fabio Bas
2016-03-24Fix #540Fabio Bas
2016-03-23belated happy new yearFabio Bas
2016-03-10TActiveCheckBoxList cannot be updated during callback, if it was initially ↵unknown
empty, since the surrounding span with the control id is not even rendered if there are no items. To allow this, always force the span to be rendered for TActiveCheckBoxList.
2016-03-06Add some deprecation noticesFabio Bas
2016-03-06Activecontrols: avoid updating client side if the value didn't changeFabio Bas
Fix #399
2016-03-06Revert part of #553; fix #574Fabio Bas
2016-02-25Applied some misc optimizations to class serializationFabio Bas
Avoid saving in the page state the values of class variables if they’re still the default. Reduces page state size, based on the work initiated in 8dc9d4f7d49bcbeaf4998baf74a4f4459967c1f0
2016-02-25TJuiDialog: avoid "cannot call methods on dialog prior to initialization" errorFabio Bas
2016-02-25Fix error reporting for not-existing property set on TJuiControlFabio Bas
2016-02-24Clear dead code related to HasPriorityFabio Bas
2016-02-24Fix ClientSide.RequestTimeOut on active controlsFabio Bas
2016-02-23Better fix for 4e666b6a4df28721df5dd21d5aa698e14b3da7ccFabio Bas
Split TJuiControlOptions in its own file
2016-02-23TJuiAutoComplete: better handling of the TextCssClass Option on complex ↵Fabio Bas
ItemTemplates
2016-02-23Fix callback loading for dynamically created JuiControlsFabio Bas
2016-02-23Make logging configurableFabio Bas
2016-02-23Rework the callback error handler to use the browser console for outputting ↵Fabio Bas
debug info if the logger is not available Also, clean some leftover dead code
2016-02-23Minor indent fixFabio Bas
2016-02-20TJuiAutoComplete: fix parsing of suggestionsFabio Bas
If no “textCssClass” has been defined, we could get as the label value both a simple text string or an html snippet. Fix parsing for the former case: <prop:Suggestions.ItemTemplate> <%# $this->Data->Field %> </prop:Suggestions.ItemTemplate>
2016-02-20Fix callback for controls with PostState=falseFabio Bas
When PostState=false, always send at least the page state <com:TActiveButton ActiveControl.ClientSide.PostState="false" />
2016-02-20Be more aggressive stopping eventsFabio Bas
Also, return false so that jQuery will know that the event has been stopped, too This fixes some special cases where <TButton Attributes.onClick=“return false;” /> caused a postback