Jump to content

SISBLU Software

uniGUI Subscriber
  • Posts

    196
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by SISBLU Software

  1. Please, i can change the text color, but the arrow is always white. How do I change the color of the arrow?
  2. This not worker me.pagingBar.moveNext();
  3. For the previous page, it worked ... But it did not work for the next page. function afterrender(sender, eOpts) { var me = sender; me.view.getEl().on('scroll', function(e, t) { if (me.pagingBar.isAfterScroll) { if (t.scrollHeight - (t.scrollTop + me.view.el.getHeight()) == 0) { if (me.pagingBar) { me.pagingBar.moveNext(); } } else if (t.scrollTop == 0) { if (me.pagingBar) { me.pagingBar.movePrevious(); } } } }); }
  4. Correct: UniDBGRID>ExtEvents>reconfigure function reconfigure(sender, store, columns, oldStore, the, eOpts) { for (var i = 0; i < columns.length; i++) { if (columns.getEditor()) { columns.getEditor().on('specialkey', function (field, e) { if (e.getKey() == 13) { e.keyCode = e.TAB; return e.keyCode; } }) } } } -------------------- UniDBGRID>ExtEvents>beforeedit function beforeedit(editor, context, eOpts) { return !editor.editing; }
  5. Solution: UniDBGRID>ExtEvents>reconfigure function reconfigure(sender, store, columns, oldStore, the, eOpts) { for (var i = 0; i < columns.length; i++) { if (columns.getEditor()) { columns.getEditor().on('specialkey', function (field, e) { if (e.getKey() == 13) { e.keyCode = e.TAB; return e.keyCode; } }) } } }
  6. Please, how do I get the ENTER key to go to the next field in the roweditor? Currently when clicking ENTER the record is SAVED. I want to save with the ENTER key only if it is the last field.
  7. PRINT QUALITY IS BAD. HOW CAN I IMPROVE THE QUALITY OF PRINTING?
  8. Hi Guys, follow link to tests on your Smartphone. - Android and IOS https://vendas.gdaha.com.br/one/scan.dll/m
  9. I have problems with Unigui TOUCH. When the client closes the App web page, the session continues ... When he enters the APP web page he starts a new session.
  10. * Reader: Barcode/ QRCODE (ANDROID and IOS) for UNIGUI TOUCH * Does not depend on external APP
×
×
  • Create New...