Q
|
qaiserikram author 10/23/2016 |
Temporary Solution for Gylphicons Issue. |
S
|
steveh 10/23/2016 |
For your point 3,the code checks whether the layout is bootstrap and if so suppresses the width style, I've a textarea that only takes up half the width available for instance. |
Q
|
qaiserikram author 10/24/2016 |
Temporary Solution to My Point Number 4 - ReadOnly Values not visible with AutoFill Feature |
![]() |
romaldus 10/24/2016 |
Temporary Solution to My Point Number 4 - ReadOnly Values not visible with AutoFill Feature Issues : When you select a dropdown value and have chosen autofill some readonly fields, values get filled but not visible on add/edit page. Hence no values are visible, therefore, no calculation on the fly on add and edit pages Solution: Open C:\Program Files (x86)\PHPRunner9.0\source\include\common\runnerJS\Control.js (Build 27326) Go to Line No 1010 there is a code which ends on Line No 1032 and here is the that code setValue: function( val, triggerEvent, updContext ) { var readOnly = this.isReadonly(); if ( this.valueElem instanceof jQuery ) { if ( readOnly ) { this.makeReadWrite(); } this.valueElem.val( val ); if ( triggerEvent === true ) { this.fireEvent("change", updContext); } if ( readOnly ) { this.makeReadWrite(); } return true; } return false; }, Replace that code with this one (i've taken that code from installation of Build 27012) setValue: function( val, triggerEvent, updContext ) { if ( this.valueElem instanceof jQuery ) { this.valueElem.val( val ); if ( triggerEvent === true ) { this.fireEvent("change", updContext); } return true; } return false; }, Now do a full build and problem is resolved. I don't know whether this is the actual fix, but it fixes the problem Now autofill values get populated and are visible on add/edit pages. On the fly calculation starts working too and balance gets updated (while balance field is a readonly field)
|
Q
|
qaiserikram author 10/24/2016 |
i have the same issue with phprunner build 27326.
|
![]() |
romaldus 10/24/2016 |
@romaldus! Have you resolved the issue by applying the fix as I suggested?
|
Q
|
qaiserikram author 10/25/2016 |
For some reason, i have to uninstall build 27326 and switch back to build 27012. I'm working on a large project where many forms depends on autofill in read only fields.
|
Q
|
qaiserikram author 10/30/2016 |
You have moved edit selected, delete selected to settings gear for bootstrap for smaller screens compatibility. But this causes issue while editing records (master and child mode). When I select child records on master table's edit page, there are no edit all, save all. save or delete buttons as they are available in previously provided templates (now called html5 compatibility templates)
|